:root {
    --primary: #1268f3;
    --primary-dark: #0849b8;
    --primary-light: #eaf3ff;
    --cyan: #00b8e6;
    --dark: #111827;
    --dark-soft: #344054;
    --text: #263244;
    --muted: #667085;
    --border: #e4e7ec;
    --background: #f6f8fc;
    --white: #ffffff;
    --success: #12b76a;
    --shadow-small: 0 10px 30px rgba(17, 24, 39, 0.07);
    --shadow-large: 0 28px 80px rgba(17, 24, 39, 0.13);
    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 32px;
    --public-width: 1200px;
    --sidebar-width: 278px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.public-container,
.header-inner,
.footer-container {
    width: min(calc(100% - 40px), var(--public-width));
    margin: 0 auto;
}

.component-error {
    padding: 15px;
    color: #b42318;
    border: 1px solid #fecdca;
    background: #fef3f2;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 750;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--cyan)
    );
    box-shadow: 0 13px 28px rgba(18, 104, 243, 0.24);
}

.button-primary:hover {
    box-shadow: 0 17px 38px rgba(18, 104, 243, 0.32);
}

.button-secondary {
    color: var(--text);
    border-color: var(--border);
    background: var(--white);
}

.button-secondary:hover {
    border-color: #b8c5d6;
    box-shadow: var(--shadow-small);
}

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

.button-large {
    min-height: 54px;
    padding: 14px 23px;
    border-radius: 15px;
}

.full-button {
    width: 100%;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(228, 231, 236, 0.85);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.5px;
}

.brand img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 13px;
}

.brand strong {
    color: var(--primary);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 29px;
}

.main-navigation a {
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 680;
    transition: color 160ms ease;
}

.main-navigation a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector {
    height: 43px;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;
    background: var(--white);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--white);
    cursor: pointer;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background:
        radial-gradient(
            circle at 82% 23%,
            rgba(0, 184, 230, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 60%,
            rgba(18, 104, 243, 0.1),
            transparent 31%
        ),
        linear-gradient(180deg, #ffffff, #f5faff);
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(
            rgba(18, 104, 243, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18, 104, 243, 0.08) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000000, transparent 88%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
    align-items: center;
    gap: 72px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: var(--primary-dark);
    border: 1px solid #cbdfff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.hero-badge span,
.robot-online span,
.dashboard-badge i,
.online-status i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(18, 183, 106, 0.12);
}

.hero-content h1 {
    max-width: 720px;
    margin: 24px 0 22px;
    color: var(--dark);
    font-size: clamp(48px, 5vw, 77px);
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.hero-content h1 strong {
    display: block;
    color: transparent;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--cyan)
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 33px;
}

.hero-statistics {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 42px;
}

.hero-statistics div {
    display: grid;
    gap: 4px;
}

.hero-statistics div + div {
    padding-left: 25px;
    border-left: 1px solid var(--border);
}

.hero-statistics strong {
    color: var(--dark);
    font-size: 17px;
}

.hero-statistics span {
    color: var(--muted);
    font-size: 11px;
}

.hero-robot-panel {
    position: relative;
    overflow: hidden;
    padding: 21px;
    border: 1px solid #d5e7fb;
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(20px);
}

.hero-robot-panel::before {
    position: absolute;
    top: -110px;
    left: 50%;
    width: 360px;
    height: 360px;
    content: "";
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(
        circle,
        rgba(0, 184, 230, 0.26),
        transparent 68%
    );
}

.robot-online {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    font-size: 12px;
    font-weight: 750;
}

.robot-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    height: 310px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 8px 0;
}

.hero-robot-image {
    width: 390px;
    max-height: 340px;
    object-fit: cover;
    object-position: center 24%;
    mix-blend-mode: multiply;
    animation: robot-float 4s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-10px);
    }
}

.robot-welcome-message {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
}

.marcus-avatar {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    color: var(--white);
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--cyan)
    );
    font-weight: 900;
}

.robot-welcome-message p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.robot-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 11px;
}

.robot-actions a {
    padding: 12px;
    color: var(--dark-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: 160ms ease;
}

.robot-actions a:hover {
    color: var(--primary-dark);
    border-color: #b6d6ff;
    background: var(--primary-light);
}

.partners-strip {
    padding: 27px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-strip p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.partner-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px;
}

.partner-names strong {
    color: #98a2b3;
    font-size: 17px;
}

.public-section,
.ecosystem-section,
.pricing-section,
.final-cta {
    padding: 105px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading span,
.final-cta-card > div > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.section-heading h2,
.final-cta-card h2 {
    margin: 12px 0 16px;
    color: var(--dark);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -2.3px;
}

.section-heading p,
.final-cta-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.centered-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.feature-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.feature-card-large {
    grid-row: span 2;
}

.feature-icon {
    display: grid;
    width: 49px;
    height: 49px;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 23px;
}

.feature-card h3 {
    margin: 21px 0 11px;
    color: var(--dark);
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.code-window {
    overflow: hidden;
    margin-top: 28px;
    border-radius: 17px;
    background: #101828;
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.22);
}

.code-window-top {
    display: flex;
    gap: 6px;
    padding: 13px;
    background: #1d2939;
}

.code-window-top span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #667085;
}

.code-window pre {
    overflow-x: auto;
    margin: 0;
    padding: 24px;
    color: #a9e7ff;
    font-family: Consolas, monospace;
    font-size: 13px;
    line-height: 1.7;
}

.ecosystem-section {
    background: var(--background);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 75px;
}

.left-heading {
    margin-bottom: 35px;
}

.ecosystem-list {
    display: grid;
    gap: 14px;
}

.ecosystem-item {
    display: flex;
    gap: 15px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}

.ecosystem-item > span {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 14px;
    background: var(--primary-light);
    font-size: 21px;
}

.ecosystem-item p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.ecosystem-visual {
    position: relative;
    min-height: 490px;
    border: 1px solid #d7e7fa;
    border-radius: var(--radius-large);
    background:
        radial-gradient(
            circle at center,
            rgba(18, 104, 243, 0.15),
            transparent 42%
        ),
        var(--white);
    box-shadow: var(--shadow-large);
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 175px;
    height: 175px;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid #cce1ff;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 20px 50px rgba(18, 104, 243, 0.2);
}

.ecosystem-center img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    object-position: center 26%;
    border-radius: 24px;
}

.ecosystem-center strong {
    margin-top: -17px;
    color: var(--dark);
}

.ecosystem-bubble {
    position: absolute;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-small);
    font-size: 13px;
    font-weight: 750;
}

.bubble-market {
    top: 65px;
    left: 44px;
}

.bubble-delivery {
    top: 76px;
    right: 38px;
}

.bubble-translation {
    bottom: 75px;
    left: 45px;
}

.bubble-code {
    right: 43px;
    bottom: 66px;
}

.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    max-width: 1040px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.pricing-featured {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(
        150deg,
        #0f54ce,
        #087acb
    );
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(18, 104, 243, 0.28);
}

.popular-label {
    position: absolute;
    top: -13px;
    left: 50%;
    padding: 7px 13px;
    transform: translateX(-50%);
    border-radius: 999px;
    color: var(--primary-dark);
    background: #dff5ff;
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.pricing-name {
    font-size: 14px;
    font-weight: 850;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    min-height: 59px;
    margin: 20px 0 24px;
}

.pricing-price strong {
    color: var(--dark);
    font-size: 39px;
    letter-spacing: -2px;
}

.pricing-featured .pricing-price strong {
    color: var(--white);
}

.pricing-price span {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
}

.pricing-featured .pricing-price span {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-card ul {
    display: grid;
    flex: 1;
    gap: 12px;
    padding: 0;
    margin: 0 0 27px;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
}

.pricing-featured ul {
    color: rgba(255, 255, 255, 0.85);
}

.final-cta {
    padding-top: 20px;
}

.final-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 54px;
    color: var(--white);
    border-radius: var(--radius-large);
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(85, 224, 255, 0.35),
            transparent 30%
        ),
        linear-gradient(135deg, #0c4dbd, #078bd0);
    box-shadow: 0 28px 75px rgba(18, 104, 243, 0.28);
}

.final-cta-card > div {
    max-width: 720px;
}

.final-cta-card > div > span {
    color: #bfeeff;
}

.final-cta-card h2 {
    color: var(--white);
}

.final-cta-card p {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    padding: 75px 0 25px;
    color: #d0d5dd;
    background: #101828;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 55px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 360px;
    margin: 21px 0 14px;
    color: #98a2b3;
    line-height: 1.7;
}

.footer-country {
    color: #667085;
    font-size: 12px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-column strong {
    margin-bottom: 7px;
    color: var(--white);
}

.footer-column a {
    color: #98a2b3;
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    padding-top: 22px;
    color: #667085;
    border-top: 1px solid #344054;
    font-size: 12px;
}

/* Tableau de bord */

.dashboard-body {
    min-height: 100vh;
    background: var(--background);
}

.dashboard-layout {
    min-height: 100vh;
}

.dashboard-sidebar {
    position: fixed;
    z-index: 200;
    inset: 0 auto 0 0;
    display: flex;
    width: var(--sidebar-width);
    flex-direction: column;
    padding: 20px 17px;
    color: #d0d5dd;
    background:
        radial-gradient(
            circle at 40% 0,
            rgba(18, 104, 243, 0.22),
            transparent 28%
        ),
        #101828;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px 20px;
}

.sidebar-brand .brand {
    color: var(--white);
}

.sidebar-close {
    display: none;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 27px;
    cursor: pointer;
}

.new-conversation-button {
    display: flex;
    width: 100%;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 21px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--cyan)
    );
    font-weight: 750;
    cursor: pointer;
}

.sidebar-navigation {
    display: grid;
    gap: 4px;
    overflow-y: auto;
}

.sidebar-label {
    margin: 16px 10px 7px;
    color: #667085;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 43px;
    padding: 10px 12px;
    border-radius: 11px;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 650;
    transition: 160ms ease;
}

.sidebar-link span {
    display: grid;
    width: 23px;
    place-items: center;
    font-size: 16px;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

.sidebar-bottom {
    display: grid;
    gap: 7px;
    margin-top: auto;
}

.subscription-card {
    margin-bottom: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
}

.subscription-card span {
    color: #79ddff;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.subscription-card strong {
    display: block;
    margin-top: 7px;
    color: var(--white);
    font-size: 13px;
}

.subscription-card p {
    margin: 7px 0 13px;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.5;
}

.subscription-card button {
    width: 100%;
    padding: 9px;
    border: 0;
    border-radius: 9px;
    color: var(--primary-dark);
    background: var(--white);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.dashboard-page {
    min-height: 100vh;
    margin-left: var(--sidebar-width);
}

.dashboard-topbar {
    position: sticky;
    z-index: 90;
    top: 0;
    display: flex;
    min-height: 83px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 15px 31px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-small-title {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.topbar-left h1 {
    margin: 4px 0 0;
    color: var(--dark);
    font-size: 21px;
    letter-spacing: -0.6px;
}

.sidebar-open {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--white);
    cursor: pointer;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-search {
    display: flex;
    width: 270px;
    height: 43px;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}

.topbar-search span {
    color: var(--muted);
    font-size: 19px;
}

.topbar-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
}

.icon-button {
    position: relative;
    width: 43px;
    height: 43px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
}

.notification-dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--white);
    border-radius: 999px;
    background: #f04438;
}

.profile-button {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 5px 10px 5px 6px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    cursor: pointer;
}

.profile-avatar {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: var(--white);
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--cyan)
    );
    font-size: 12px;
    font-weight: 850;
}

.profile-information {
    display: grid;
    text-align: left;
}

.profile-information strong {
    color: var(--dark);
    font-size: 12px;
}

.profile-information small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.dashboard-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 29px;
}

.dashboard-welcome {
    position: relative;
    display: flex;
    min-height: 255px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 42px;
    border-radius: 25px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(105, 230, 255, 0.33),
            transparent 27%
        ),
        linear-gradient(135deg, #0f4ebd, #087cc8);
    box-shadow: 0 22px 55px rgba(18, 104, 243, 0.23);
}

.dashboard-welcome-content {
    position: relative;
    z-index: 2;
    max-width: 710px;
}

.dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 750;
}

.dashboard-welcome h2 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.dashboard-welcome p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.dashboard-robot {
    position: absolute;
    right: 13px;
    bottom: -75px;
    width: 325px;
    height: 325px;
    object-fit: cover;
    object-position: center 23%;
    border-radius: 40px;
    mix-blend-mode: screen;
    opacity: 0.75;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px;
    margin-top: 20px;
}

.dashboard-action-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 17px;
    color: var(--text);
    background: var(--white);
    box-shadow: var(--shadow-small);
    text-align: left;
    cursor: pointer;
    transition:
        transform 170ms ease,
        box-shadow 170ms ease;
}

.dashboard-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.11);
}

.dashboard-action-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 13px;
    background: var(--primary-light);
    font-size: 19px;
}

.dashboard-action-card strong {
    color: var(--dark);
    font-size: 13px;
}

.dashboard-action-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.dashboard-action-card i {
    position: absolute;
    top: 19px;
    right: 17px;
    color: var(--primary);
    font-style: normal;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(310px, 0.7fr);
    gap: 18px;
    margin-top: 20px;
}

.dashboard-panel {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--border);
}

.panel-heading > div > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.panel-heading h3 {
    margin: 4px 0 0;
    color: var(--dark);
    font-size: 17px;
}

.panel-heading button {
    border: 0;
    color: var(--primary);
    background: transparent;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
}

.online-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
}

.assistant-introduction {
    display: flex;
    min-height: 170px;
    align-items: flex-start;
    gap: 13px;
    padding: 28px 4px;
}

.assistant-introduction p {
    max-width: 660px;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.dashboard-chat-form {
    display: flex;
    min-height: 57px;
    align-items: flex-end;
    gap: 9px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fbfcfe;
}

.dashboard-chat-form textarea {
    width: 100%;
    max-height: 160px;
    resize: none;
    padding: 10px 2px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
}

.attachment-button,
.dashboard-send-button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
}

.attachment-button {
    color: var(--muted);
    background: var(--white);
}

.dashboard-send-button {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--cyan)
    );
}

.assistant-disclaimer {
    display: block;
    margin-top: 9px;
    color: #98a2b3;
    font-size: 10px;
    text-align: center;
}

.empty-projects {
    display: grid;
    min-height: 260px;
    place-items: center;
    align-content: center;
    padding: 25px;
    text-align: center;
}

.empty-projects > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 17px;
    color: var(--primary);
    background: var(--primary-light);
    font-size: 25px;
}

.empty-projects strong {
    color: var(--dark);
}

.empty-projects p {
    max-width: 260px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
    color: #98a2b3;
    border-top: 1px solid var(--border);
    background: var(--white);
    font-size: 11px;
}

.dashboard-footer div {
    display: flex;
    gap: 20px;
}

.dashboard-overlay {
    display: none;
}

/* Responsive */

@media (max-width: 1180px) {
    .main-navigation {
        gap: 17px;
    }

    .hero-grid {
        gap: 40px;
    }

    .quick-action-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    .site-header .header-actions .button-secondary {
        display: none;
    }

    .main-navigation {
        position: absolute;
        top: 76px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 13px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: var(--white);
        box-shadow: var(--shadow-large);
    }

    .main-navigation.mobile-navigation-open {
        display: grid;
    }

    .main-navigation a {
        padding: 12px;
        border-radius: 10px;
    }

    .main-navigation a:hover {
        background: var(--background);
    }

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

    .hero-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-statistics {
        justify-content: center;
    }

    .hero-robot-panel {
        width: min(100%, 580px);
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-row: auto;
    }

    .ecosystem-visual {
        min-height: 460px;
    }

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

    .pricing-featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: transform 220ms ease;
    }

    .dashboard-sidebar.sidebar-mobile-open {
        transform: translateX(0);
    }

    .sidebar-close,
    .sidebar-open {
        display: block;
    }

    .dashboard-overlay {
        position: fixed;
        z-index: 150;
        inset: 0;
        background: rgba(16, 24, 40, 0.56);
    }

    .dashboard-overlay.overlay-visible {
        display: block;
    }

    .dashboard-page {
        margin-left: 0;
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .public-container,
    .header-inner,
    .footer-container {
        width: min(calc(100% - 26px), var(--public-width));
    }

    .header-actions .button-primary,
    .language-selector {
        display: none;
    }

    .hero-section {
        padding: 66px 0;
    }

    .hero-content h1 {
        font-size: 45px;
        letter-spacing: -2.5px;
    }

    .hero-statistics {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-statistics div + div {
        padding: 0;
        border: 0;
    }

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

    .final-cta-card {
        display: grid;
        padding: 35px 25px;
    }

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

    .footer-bottom {
        display: grid;
    }

    .dashboard-topbar {
        padding: 13px;
    }

    .topbar-search,
    .profile-information,
    .profile-button > span:last-child {
        display: none;
    }

    .profile-button {
        padding: 5px;
    }

    .dashboard-content {
        padding: 15px;
    }

    .dashboard-welcome {
        min-height: 315px;
        align-items: flex-start;
        padding: 30px 24px;
    }

    .dashboard-robot {
        right: -25px;
        bottom: -100px;
        width: 260px;
        height: 260px;
        opacity: 0.48;
    }

    .quick-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-footer {
        display: grid;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        display: grid;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .robot-actions {
        grid-template-columns: 1fr;
    }

    .robot-image-wrapper {
        height: 260px;
    }

    .quick-action-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-welcome h2 {
        font-size: 32px;
    }

    .dashboard-footer div {
        flex-wrap: wrap;
    }
}

/* Nouveaux abonnements Marcus IA */

.pricing-grid-four {
    max-width: 1380px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid-four .pricing-card {
    min-width: 0;
}

.pricing-plan-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    background: var(--background);
    font-size: 23px;
}

.starter-icon {
    background: #eafaf1;
}

.pro-icon {
    background: #eaf3ff;
}

.vip-icon {
    background: rgba(255, 255, 255, 0.14);
}

.enterprise-icon {
    background: #f2f4f7;
}

.pricing-pro {
    border-color: #b9d5ff;
    box-shadow: 0 22px 55px rgba(18, 104, 243, 0.15);
}

.pricing-description {
    min-height: 65px;
    margin: -8px 0 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.pricing-featured .pricing-description {
    color: rgba(255, 255, 255, 0.78);
}

.annual-price {
    display: grid;
    gap: 3px;
    margin: -13px 0 22px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

.annual-price strong {
    color: #ffffff;
    font-size: 14px;
}

.annual-price span {
    color: #a8efff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 35px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .pricing-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-featured {
        transform: none;
    }
}

@media (max-width: 680px) {
    .pricing-grid-four {
        grid-template-columns: 1fr;
    }

    .pricing-description {
        min-height: auto;
    }

    .pricing-reassurance {
        display: grid;
        gap: 12px;
        text-align: center;
    }
}

/* =========================================================
   AUTHENTIFICATION MARCUS IA
   ========================================================= */

.auth-pending body { visibility: hidden; }
.auth-body { min-height: 100vh; background: var(--background); }
.auth-shell { display: grid; min-height: 100vh; grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.25fr); }
.auth-showcase {
    position: relative; overflow: hidden; display: flex; min-height: 100vh;
    flex-direction: column; justify-content: space-between; padding: 42px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(0,184,230,.38), transparent 28%),
        linear-gradient(145deg, #071a3d 0%, #0849b8 55%, #00a7d6 130%);
}
.auth-showcase::after {
    content: ""; position: absolute; inset: 0; opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
    background-size: 46px 46px; pointer-events: none;
}
.auth-brand { position: relative; z-index: 1; color: var(--white); }
.auth-brand strong { color: #8cecff; }
.auth-showcase-content { position: relative; z-index: 1; max-width: 570px; padding-bottom: 7vh; }
.auth-kicker, .auth-step { color: #8cecff; font-size: 12px; font-weight: 850; letter-spacing: 1.5px; }
.auth-showcase h1 { margin: 18px 0; color: var(--white); font-size: clamp(38px, 5vw, 68px); line-height: 1.02; letter-spacing: -2.4px; }
.auth-showcase p { max-width: 540px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.7; }
.auth-trust-grid { display: grid; margin-top: 35px; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-trust-grid span { padding: 14px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.auth-form-side { padding: 24px clamp(24px, 6vw, 88px) 60px; overflow-y: auto; }
.auth-toolbar { display: flex; min-height: 54px; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.auth-back { color: var(--muted); font-size: 14px; font-weight: 700; }
.auth-card { width: min(100%, 560px); margin: 6vh auto 0; padding: clamp(26px, 4vw, 48px); border: 1px solid var(--border); border-radius: var(--radius-large); background: var(--white); box-shadow: var(--shadow-large); }
.auth-card-wide { width: min(100%, 820px); margin-top: 10px; }
.auth-heading { margin-bottom: 28px; }
.auth-heading h2 { margin: 10px 0 8px; color: var(--dark); font-size: clamp(29px, 4vw, 42px); line-height: 1.08; letter-spacing: -1.4px; }
.auth-heading p { margin: 0; color: var(--muted); line-height: 1.6; }
.form-grid { display: grid; gap: 18px; }
.form-grid.two-columns { grid-template-columns: 1fr 1fr; }
.full-column { grid-column: 1 / -1; }
.form-field { position: relative; display: grid; gap: 8px; margin-bottom: 18px; color: var(--dark-soft); font-size: 14px; font-weight: 720; }
.form-field > input, .form-field > select, .password-control, .phone-control {
    width: 100%; min-height: 52px; border: 1px solid var(--border); border-radius: 14px;
    outline: none; background: var(--white); transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field > input, .form-field > select { padding: 0 15px; }
.form-field > input:focus, .form-field > select:focus, .password-control:focus-within, .phone-control:focus-within {
    border-color: var(--primary); box-shadow: 0 0 0 4px rgba(18,104,243,.11);
}
.password-control, .phone-control { display: flex; align-items: center; }
.password-control input, .phone-control input { min-width: 0; flex: 1; height: 50px; padding: 0 15px; border: 0; outline: 0; background: transparent; }
.password-control button { width: 48px; height: 48px; border: 0; background: transparent; cursor: pointer; }
.phone-control span { padding-left: 15px; color: var(--primary-dark); font-weight: 850; }
.field-help { color: var(--muted); font-size: 12px; font-weight: 500; }
.field-error { min-height: 0; color: #b42318; font-size: 12px; font-weight: 650; }
.has-error > input, .has-error > select, .has-error .password-control, .has-error .phone-control { border-color: #f04438; }
.form-message { margin-bottom: 20px; padding: 14px 16px; border-radius: 13px; font-size: 14px; line-height: 1.5; }
.form-message-error { color: #b42318; border: 1px solid #fecdca; background: #fef3f2; }
.form-message-success { color: #027a48; border: 1px solid #abefc6; background: #ecfdf3; }
.country-field { z-index: 8; }
.country-results { position: absolute; z-index: 50; top: calc(100% - 10px); right: 0; left: 0; max-height: 310px; overflow: auto; padding: 8px; border: 1px solid var(--border); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-large); }
.country-option { display: grid; width: 100%; grid-template-columns: 30px 1fr auto; align-items: center; gap: 8px; padding: 11px; border: 0; border-radius: 10px; text-align: left; background: transparent; cursor: pointer; }
.country-option:hover { background: var(--primary-light); }
.country-option small { color: var(--muted); }
.country-loading, .country-empty { padding: 18px; color: var(--muted); text-align: center; }
.password-strength { display: flex; flex-wrap: wrap; gap: 8px; margin: -5px 0 20px; }
.password-strength span { padding: 7px 9px; border-radius: 999px; color: var(--muted); background: #f2f4f7; font-size: 11px; font-weight: 700; }
.password-strength span.valid { color: #027a48; background: #ecfdf3; }
.terms-field { display: grid; grid-template-columns: 22px 1fr; align-items: start; }
.terms-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); }
.auth-switch { margin: 24px 0 0; color: var(--muted); text-align: center; }
.auth-switch a { color: var(--primary); font-weight: 800; }
.two-factor-input { height: 72px !important; text-align: center; font-size: 34px; font-weight: 850; letter-spacing: 12px; }

@media (max-width: 1050px) {
    .auth-shell { grid-template-columns: 1fr; }
    .auth-showcase { min-height: 340px; padding: 30px; }
    .auth-showcase-content { padding: 60px 0 10px; }
    .auth-showcase h1 { max-width: 760px; font-size: 45px; }
    .auth-form-side { padding: 20px 22px 55px; }
    .auth-card { margin-top: 15px; }
}
@media (max-width: 650px) {
    .auth-showcase { min-height: 285px; }
    .auth-showcase h1 { font-size: 34px; letter-spacing: -1.4px; }
    .auth-showcase p { font-size: 15px; }
    .auth-trust-grid { display: none; }
    .auth-card { padding: 24px 18px; border-radius: 22px; }
    .form-grid.two-columns { grid-template-columns: 1fr; }
    .full-column { grid-column: auto; }
}


/* CORRECTIFS AUTHENTIFICATION INTERNATIONALE */
.terms-field{display:flex!important;align-items:flex-start!important;gap:12px!important;grid-template-columns:none!important;margin:18px 0 24px!important}
.terms-field input{flex:0 0 20px;width:20px!important;height:20px!important;margin:1px 0 0!important}
.terms-field>span{flex:1;line-height:1.45}
.auth-toolbar .language-selector{min-width:190px;max-width:min(300px,50vw)}
.phone-control #phone-prefix{min-width:62px;padding:0 10px;border-right:1px solid var(--border);text-align:center}
.password-control input{width:calc(100% - 50px)}
.password-control button{flex:0 0 48px}
@media(max-width:650px){.auth-toolbar .language-selector{min-width:150px;max-width:56vw}}


/* Marcus IA - forgot password */
.auth-forgot-row { display: flex; justify-content: flex-end; margin: -0.25rem 0 1rem; }
.auth-forgot-row a { font-size: 0.92rem; font-weight: 600; text-decoration: none; }
.auth-forgot-row a:hover { text-decoration: underline; }

/* Espace entre le lien mot de passe oublié et le bouton */
.auth-forgot-row {
    margin-bottom: 1.5rem;
}

/* Espace entre le lien mot de passe oublié et le bouton */
.auth-forgot-row {
    margin-bottom: 1.5rem;
}

/* Espace entre le lien mot de passe oublié et le bouton */
.auth-forgot-row {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 1.5rem;
}

/* Ajustement final du lien mot de passe oublié */
.auth-forgot-row {
    display: flex;
    justify-content: flex-end;
    margin: 0.65rem 0 1.75rem;
}

.auth-forgot-row a {
    display: inline-block;
    line-height: 1.4;
}


/* =========================================================
   FOOTER COMPLET MARCUS 2026
   ========================================================= */

.footer-grid-complete {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(5, minmax(140px, 1fr));
    gap: 38px;
    align-items: start;
}

.footer-grid-complete .footer-column {
    min-width: 0;
}

.footer-grid-complete .footer-column strong {
    display: block;
    margin-bottom: 16px;
}

.footer-grid-complete .footer-column a {
    display: block;
    margin-bottom: 11px;
    line-height: 1.45;
}

.footer-app-link {
    font-weight: 600;
}

.footer-commerce {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-commerce p {
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 1250px) {
    .footer-grid-complete {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 800px) {
    .footer-grid-complete {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 32px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-commerce {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 520px) {
    .footer-grid-complete {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}


/* =========================================================
   HEADER RESPONSIVE MARCUS 2026
   ========================================================= */

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    position: relative;
}

.header-brand {
    flex-shrink: 0;
}

.mobile-register-link {
    display: none !important;
}

.mobile-menu-button {
    position: relative;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 13px;
    color: var(--dark);
    background: var(--white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.menu-icon-open,
.menu-icon-close {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.menu-icon-close {
    display: none;
    font-size: 32px;
    font-weight: 400;
}

.mobile-menu-button.is-open .menu-icon-open {
    display: none;
}

.mobile-menu-button.is-open .menu-icon-close {
    display: grid;
}

@media (max-width: 1180px) {
    .header-inner {
        gap: 20px;
    }

    .main-navigation {
        gap: 20px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-actions {
        gap: 9px;
    }

    .header-actions .button {
        padding-right: 17px;
        padding-left: 17px;
        white-space: nowrap;
    }

    .language-selector {
        min-width: 66px;
    }
}

@media (max-width: 960px) {
    .site-header {
        overflow: visible;
    }

    .header-inner {
        display: grid;
        min-height: 72px;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 14px;
    }

    .header-brand {
        grid-column: 1;
    }

    .header-brand img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .header-brand span {
        white-space: nowrap;
    }

    .header-actions {
        grid-column: 3;
        justify-content: flex-end;
    }

    .main-navigation {
        position: absolute;
        z-index: 1100;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none !important;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 0 0 20px 20px;
        background: var(--white);
        box-shadow: 0 22px 45px rgba(16, 24, 40, 0.16);
    }

    .main-navigation.mobile-navigation-open {
        display: flex !important;
    }

    .main-navigation > a:not(.button) {
        display: flex;
        min-height: 48px;
        align-items: center;
        padding: 0 15px;
        border-radius: 11px;
        font-size: 15px;
    }

    .main-navigation > a:not(.button):hover {
        background: var(--background);
    }

    .mobile-register-link {
        display: flex !important;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        margin-top: 7px;
    }

    .mobile-menu-button {
        display: block !important;
    }

    .hero-section {
        overflow: hidden;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .hero-content {
        width: 100%;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-content h1 {
        font-size: clamp(48px, 8vw, 68px);
    }

    .hero-description {
        max-width: 720px;
    }

    .hero-robot-panel {
        width: min(100%, 620px);
    }

    .ecosystem-grid,
    .feature-grid,
    .pricing-grid {
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .header-inner {
        width: min(calc(100% - 22px), var(--public-width));
        min-height: 66px;
        gap: 8px;
    }

    .header-brand {
        gap: 7px;
    }

    .header-brand img {
        width: 38px;
        height: 38px;
    }

    .header-brand span {
        font-size: 15px;
    }

    .header-actions {
        gap: 7px;
    }

    .header-actions .language-selector,
    .header-register-button {
        display: none !important;
    }

    .header-login-button {
        display: inline-flex !important;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 0 14px !important;
        border-radius: 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .mobile-menu-button {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 21px;
    }

    .main-navigation {
        right: -2px;
        left: -2px;
        padding: 12px;
    }

    .public-container {
        width: min(calc(100% - 26px), var(--public-width));
    }

    .hero-section {
        padding-top: 48px;
        padding-bottom: 55px;
    }

    .hero-grid {
        gap: 38px;
    }

    .hero-content h1 {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(39px, 12vw, 55px);
        line-height: 1.02;
        letter-spacing: -2.2px;
        overflow-wrap: normal;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-buttons {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;
        min-height: 52px;
        justify-content: center;
    }

    .hero-statistics {
        width: 100%;
    }

    .hero-robot-panel {
        width: 100%;
        min-width: 0;
    }

    .robot-image-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .feature-card,
    .pricing-card,
    .final-cta-card {
        min-width: 0;
    }
}

@media (max-width: 430px) {
    .header-inner {
        width: min(calc(100% - 16px), var(--public-width));
    }

    .header-brand span {
        font-size: 14px;
    }

    .header-login-button {
        padding: 0 11px !important;
        font-size: 12px;
    }

    .mobile-menu-button {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 12vw, 48px);
        letter-spacing: -1.8px;
    }
}

@media (max-width: 350px) {
    .header-brand span {
        display: none;
    }
}

body.mobile-menu-open {
    overflow: hidden;
}


/* =========================================================
   PAGES RESSOURCES MARCUS 2026
   ========================================================= */

.resource-page {
    overflow: hidden;
    background: #ffffff;
}

.resource-hero {
    position: relative;
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(0, 184, 230, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 10%,
            rgba(18, 104, 243, 0.10),
            transparent 30%
        ),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.resource-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.resource-hero-content {
    max-width: 790px;
}

.resource-kicker {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.resource-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(47px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.resource-hero h1 strong {
    display: block;
    color: var(--primary);
}

.resource-hero-content > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.resource-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.resource-summary-card,
.api-code-card {
    min-width: 0;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(18, 104, 243, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 70px rgba(16, 24, 40, 0.12);
}

.resource-summary-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background: var(--primary-light);
    font-size: 29px;
}

.resource-summary-card h2 {
    margin: 0 0 13px;
    color: var(--dark);
    font-size: 28px;
}

.resource-summary-card p {
    color: var(--muted);
    line-height: 1.7;
}

.resource-summary-card ul {
    display: grid;
    gap: 13px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.resource-summary-card li {
    position: relative;
    padding-left: 25px;
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 700;
}

.resource-summary-card li::before {
    position: absolute;
    top: -1px;
    left: 0;
    color: var(--primary);
    content: "✓";
    font-weight: 900;
}

.resource-section {
    padding-top: 95px;
    padding-bottom: 95px;
}

.resource-card-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.resource-card,
.advantage-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.055);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.resource-card:hover,
.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 243, 0.28);
    box-shadow: 0 22px 45px rgba(16, 24, 40, 0.09);
}

.resource-card-icon,
.advantage-card > span:first-child {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 23px;
}

.resource-card h3,
.advantage-card h3 {
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 20px;
}

.resource-card p,
.advantage-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.resource-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.resource-card > a span {
    transition: transform 160ms ease;
}

.resource-card > a:hover span {
    transform: translateX(4px);
}

.resource-cross-links {
    padding: 40px 0 95px;
}

.resource-cross-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.resource-cross-card {
    display: grid;
    min-width: 0;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
}

.resource-cross-card > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 23px;
}

.resource-cross-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 17px;
}

.resource-cross-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.resource-cross-card b {
    color: var(--primary);
    font-size: 22px;
}

.api-code-card {
    overflow: hidden;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.12);
    background: #081a35;
    box-shadow: 0 32px 75px rgba(8, 26, 53, 0.24);
}

.api-code-top {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.api-code-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.api-code-top strong {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    text-transform: uppercase;
}

.api-code-card pre {
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
    padding: 29px;
    color: #a8efff;
    font-size: 13px;
    line-height: 1.75;
}

.api-roadmap-section {
    padding: 25px 0 95px;
}

.api-roadmap-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 50px;
    padding: clamp(35px, 6vw, 65px);
    border-radius: 30px;
    color: white;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(0, 184, 230, 0.42),
            transparent 32%
        ),
        linear-gradient(135deg, #071a3d, #0849b8);
}

.api-roadmap-card h2 {
    margin: 5px 0 17px;
    color: white;
    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.08;
}

.api-roadmap-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.api-roadmap-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.api-roadmap-list span {
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 750;
}

.advantages-mini-grid {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.advantages-mini-grid span {
    padding: 13px;
    border-radius: 12px;
    color: var(--primary-dark);
    background: var(--primary-light);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.advantages-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.advantages-highlight-section {
    padding: 25px 0 70px;
}

.advantages-highlight-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(35px, 6vw, 65px);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(0, 184, 230, 0.25),
            transparent 30%
        ),
        #f4f8ff;
}

.advantages-highlight-card h2 {
    max-width: 760px;
    margin: 5px 0 0;
    color: var(--dark);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
}

.footer-resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

@media (max-width: 1050px) {
    .resource-hero {
        padding-top: 75px;
    }

    .resource-hero-grid,
    .api-roadmap-card {
        grid-template-columns: 1fr;
    }

    .resource-hero-content {
        max-width: 850px;
    }

    .resource-summary-card,
    .api-code-card {
        width: min(100%, 700px);
    }

    .resource-card-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .resource-hero {
        padding: 55px 0 65px;
    }

    .resource-hero-grid {
        gap: 38px;
    }

    .resource-hero h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2.2px;
    }

    .resource-hero-content > p {
        font-size: 16px;
    }

    .resource-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .resource-actions .button {
        width: 100%;
        justify-content: center;
    }

    .resource-card-grid,
    .advantages-grid,
    .resource-cross-links-grid {
        grid-template-columns: 1fr;
    }

    .resource-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .resource-card,
    .advantage-card {
        padding: 24px;
    }

    .api-roadmap-list {
        grid-template-columns: 1fr;
    }

    .advantages-highlight-card {
        align-items: stretch;
        flex-direction: column;
    }

    .advantages-highlight-card .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .resource-summary-card,
    .api-code-card {
        border-radius: 22px;
    }

    .resource-cross-card {
        grid-template-columns: auto 1fr;
    }

    .resource-cross-card b {
        display: none;
    }

    .advantages-mini-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PAGES PUBLIQUES MARCUS FINAL
   ========================================================= */

.marcus-info-page {
    overflow: hidden;
    background: #ffffff;
}

.marcus-info-hero {
    padding: 95px 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 184, 230, 0.16),
            transparent 28%
        ),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.marcus-info-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.marcus-info-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.marcus-info-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.4px;
}

.marcus-info-hero h1 strong {
    display: block;
    color: var(--primary);
}

.marcus-info-hero-grid > div > p {
    max-width: 720px;
    margin: 27px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.marcus-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.marcus-info-panel,
.marcus-api-code {
    min-width: 0;
    padding: 38px;
    border: 1px solid rgba(18, 104, 243, 0.13);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 65px rgba(16, 24, 40, 0.12);
}

.marcus-info-panel-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--primary-light);
    font-size: 28px;
}

.marcus-info-panel h2 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 27px;
}

.marcus-info-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.marcus-info-panel ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.marcus-info-panel li {
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 700;
}

.marcus-info-panel li::before {
    margin-right: 10px;
    color: var(--primary);
    content: "✓";
}

.marcus-info-section {
    padding: 95px 0;
}

.marcus-info-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.marcus-info-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.marcus-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 243, 0.28);
    box-shadow: 0 22px 45px rgba(16, 24, 40, 0.09);
}

.marcus-info-card > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 23px;
}

.marcus-info-card h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 20px;
}

.marcus-info-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.marcus-info-card a {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.marcus-info-bottom {
    padding: 20px 0 90px;
}

.marcus-info-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.marcus-info-links > a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
}

.marcus-info-links > a > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 23px;
}

.marcus-info-links strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.marcus-info-links p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.marcus-info-links b {
    color: var(--primary);
    font-size: 22px;
}

.marcus-api-code {
    overflow: hidden;
    padding: 0;
    background: #081a35;
}

.marcus-api-code-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marcus-api-code-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.marcus-api-code-header strong {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.marcus-api-code pre {
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
    padding: 28px;
    color: #a8efff;
    font-size: 13px;
    line-height: 1.75;
}

.marcus-api-section,
.marcus-advantages-section {
    padding: 20px 0 80px;
}

.marcus-api-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 45px;
    padding: clamp(35px, 6vw, 65px);
    border-radius: 29px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(0, 184, 230, 0.4),
            transparent 32%
        ),
        linear-gradient(135deg, #071a3d, #0849b8);
}

.marcus-api-banner h2,
.marcus-advantages-banner h2 {
    margin: 4px 0 15px;
    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.1;
}

.marcus-api-banner h2 {
    color: #ffffff;
}

.marcus-api-banner p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.marcus-api-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.marcus-api-features span {
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
}

.marcus-advantages-tags {
    display: grid;
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.marcus-advantages-tags span {
    padding: 12px;
    border-radius: 11px;
    color: var(--primary-dark);
    background: var(--primary-light);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.marcus-advantages-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(35px, 6vw, 65px);
    border-radius: 29px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(0, 184, 230, 0.25),
            transparent 30%
        ),
        #f4f8ff;
}

.marcus-advantages-banner h2 {
    max-width: 750px;
    color: var(--dark);
}

@media (max-width: 1050px) {
    .marcus-info-hero-grid,
    .marcus-api-banner {
        grid-template-columns: 1fr;
    }

    .marcus-info-panel,
    .marcus-api-code {
        width: min(100%, 700px);
    }

    .marcus-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .marcus-info-hero {
        padding: 55px 0 65px;
    }

    .marcus-info-hero h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2.2px;
    }

    .marcus-info-hero-grid > div > p {
        font-size: 16px;
    }

    .marcus-info-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .marcus-info-actions .button {
        width: 100%;
        justify-content: center;
    }

    .marcus-info-grid,
    .marcus-info-links {
        grid-template-columns: 1fr;
    }

    .marcus-info-section {
        padding: 70px 0;
    }

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

    .marcus-advantages-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .marcus-advantages-banner .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .marcus-info-panel,
    .marcus-api-code {
        border-radius: 21px;
    }

    .marcus-info-links > a {
        grid-template-columns: auto 1fr;
    }

    .marcus-info-links b {
        display: none;
    }

    .marcus-advantages-tags {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   TRUST AND DOWNLOAD PAGES 2026
   ========================================================= */

.trust-page,
.download-page {
    overflow: hidden;
    background: #ffffff;
}

.trust-hero,
.download-hero {
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 83% 20%,
            rgba(0, 184, 230, 0.16),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 12%,
            rgba(18, 104, 243, 0.10),
            transparent 28%
        ),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.trust-hero-grid,
.download-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 95px);
}

.trust-kicker,
.download-kicker {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.trust-hero h1,
.download-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.trust-hero h1 strong,
.download-hero h1 strong {
    display: block;
    color: var(--primary);
}

.trust-hero-content > p,
.download-hero-content > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.trust-hero-actions,
.download-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.trust-badges,
.download-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.trust-badges span,
.download-platforms span {
    padding: 10px 14px;
    border: 1px solid rgba(18, 104, 243, 0.13);
    border-radius: 999px;
    color: var(--dark-soft);
    background: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 750;
}

.trust-main-card {
    padding: clamp(30px, 4vw, 43px);
    border: 1px solid rgba(18, 104, 243, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 75px rgba(16, 24, 40, 0.13);
}

.trust-main-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    background: var(--primary-light);
    font-size: 30px;
}

.trust-status {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #087a45;
    background: #eafbf2;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.trust-main-card h2 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.25;
}

.trust-main-card > p {
    color: var(--muted);
    line-height: 1.7;
}

.trust-check-list {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.trust-check-list span {
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 700;
}

.trust-section,
.download-section {
    padding: 95px 0;
}

.trust-grid,
.download-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.trust-card,
.download-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.trust-card:hover,
.download-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 243, 0.27);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.09);
}

.trust-card > span,
.download-card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 16px;
    background: var(--primary-light);
    font-size: 24px;
}

.trust-card h3,
.download-card h3 {
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 20px;
}

.trust-card p,
.download-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.payment-methods-section,
.download-benefits-section {
    padding: 20px 0 90px;
}

.payment-methods-panel,
.download-benefits-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 50px;
    padding: clamp(38px, 6vw, 67px);
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(0, 184, 230, 0.43),
            transparent 32%
        ),
        linear-gradient(135deg, #071a3d, #0849b8);
}

.payment-methods-panel h2,
.download-benefits-panel h2 {
    margin: 5px 0 16px;
    color: #ffffff;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
}

.payment-methods-panel p,
.download-benefits-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.payment-method-list,
.download-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-method-list span,
.download-benefits-list span {
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 750;
}

.trust-faq-list {
    display: grid;
    max-width: 900px;
    gap: 13px;
    margin: 45px auto 0;
}

.trust-faq-list details {
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.04);
}

.trust-faq-list summary {
    padding: 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.trust-faq-list p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.trust-final-section,
.download-final-section {
    padding: 10px 0 90px;
}

.trust-final-panel,
.download-final-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(38px, 6vw, 65px);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 83% 10%,
            rgba(0, 184, 230, 0.24),
            transparent 30%
        ),
        #f3f8ff;
}

.trust-final-panel h2,
.download-final-panel h2 {
    max-width: 760px;
    margin: 4px 0 0;
    color: var(--dark);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
}


/* DOWNLOAD DEVICES */

.download-device-panel {
    position: relative;
    min-height: 460px;
}

.download-device-window {
    position: absolute;
    top: 10px;
    left: 0;
    width: 92%;
    overflow: hidden;
    border: 1px solid rgba(18, 104, 243, 0.15);
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 35px 80px rgba(16, 24, 40, 0.18);
}

.download-window-top {
    display: flex;
    gap: 7px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.download-window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.download-window-content {
    padding: 35px;
}

.download-window-content img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.download-online {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    color: #087a45;
    font-size: 12px;
    font-weight: 800;
}

.download-online i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #14b86e;
}

.download-window-content h2 {
    margin: 16px 0 7px;
    color: var(--dark);
    font-size: 27px;
}

.download-window-content p {
    color: var(--muted);
}

.download-window-actions {
    display: grid;
    margin-top: 27px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.download-window-actions span {
    padding: 12px;
    border-radius: 12px;
    color: var(--primary-dark);
    background: var(--primary-light);
    font-size: 12px;
    font-weight: 750;
}

.download-phone {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 185px;
    min-height: 340px;
    align-items: center;
    flex-direction: column;
    padding: 24px 20px;
    border: 8px solid #071a3d;
    border-radius: 36px;
    background: #ffffff;
    box-shadow: 0 30px 65px rgba(16, 24, 40, 0.22);
}

.download-phone-speaker {
    width: 52px;
    height: 6px;
    margin-bottom: 60px;
    border-radius: 999px;
    background: #d8dee8;
}

.download-phone img {
    width: 73px;
    height: 73px;
    object-fit: contain;
}

.download-phone strong {
    margin-top: 20px;
    color: var(--dark);
    font-size: 17px;
}

.download-phone > span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.download-card-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.download-card-title > span {
    padding: 6px 9px;
    border-radius: 999px;
    color: #765b00;
    background: #fff7d6;
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}

.download-card button,
.download-card > a {
    display: flex;
    width: 100%;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    border: 0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.download-card button {
    color: #8490a3;
    background: #eef2f7;
    cursor: not-allowed;
}

.download-card > a {
    color: #ffffff;
    background: var(--primary);
}

.download-web-card .download-card-title > span {
    color: #087a45;
    background: #eafbf2;
}


@media (max-width: 1050px) {
    .trust-hero-grid,
    .download-hero-grid,
    .payment-methods-panel,
    .download-benefits-panel {
        grid-template-columns: 1fr;
    }

    .trust-main-card {
        width: min(100%, 720px);
    }

    .download-device-panel {
        width: min(100%, 720px);
    }

    .trust-grid,
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .trust-hero,
    .download-hero {
        padding: 58px 0 70px;
    }

    .trust-hero h1,
    .download-hero h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2.2px;
    }

    .trust-hero-content > p,
    .download-hero-content > p {
        font-size: 16px;
    }

    .trust-hero-actions,
    .download-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-hero-actions .button,
    .download-hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .trust-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .trust-section,
    .download-section {
        padding: 70px 0;
    }

    .payment-method-list,
    .download-benefits-list {
        grid-template-columns: 1fr;
    }

    .trust-final-panel,
    .download-final-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .trust-final-panel .button,
    .download-final-panel .button {
        width: 100%;
        justify-content: center;
    }

    .download-device-panel {
        min-height: 555px;
    }

    .download-device-window {
        width: 100%;
    }

    .download-phone {
        right: 18px;
    }
}

@media (max-width: 430px) {
    .trust-main-card {
        border-radius: 22px;
    }

    .download-device-panel {
        min-height: 530px;
    }

    .download-window-content {
        padding: 25px;
    }

    .download-window-actions {
        grid-template-columns: 1fr;
    }

    .download-phone {
        width: 155px;
        min-height: 300px;
        right: 10px;
    }

    .download-phone-speaker {
        margin-bottom: 45px;
    }
}


/* =========================================================
   SUPPORT FAQ PAGES 2026
   ========================================================= */

.support-page,
.faq-page {
    overflow: hidden;
    background: #ffffff;
}

.support-hero,
.faq-hero {
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(0, 184, 230, 0.16),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 12%,
            rgba(18, 104, 243, 0.10),
            transparent 28%
        ),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.support-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 95px);
}

.support-kicker {
    display: inline-flex;
    margin-bottom: 19px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.support-hero h1,
.faq-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.support-hero h1 strong,
.faq-hero h1 strong {
    display: block;
    color: var(--primary);
}

.support-hero-content > p,
.faq-hero-content > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.support-search-box {
    display: flex;
    width: min(100%, 700px);
    min-height: 62px;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
    padding: 0 20px;
    border: 1px solid rgba(18, 104, 243, 0.16);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.08);
}

.support-search-box > span {
    font-size: 20px;
}

.support-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--dark);
    background: transparent;
    font: inherit;
}

.support-search-box input::placeholder {
    color: #8994a7;
}

.support-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 25px;
}

.support-status-card {
    padding: clamp(30px, 4vw, 43px);
    border: 1px solid rgba(18, 104, 243, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 75px rgba(16, 24, 40, 0.13);
}

.support-status-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    background: var(--primary-light);
    font-size: 30px;
}

.support-status-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #087a45;
    background: #eafbf2;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.support-status-card h2 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.25;
}

.support-status-card > p {
    color: var(--muted);
    line-height: 1.7;
}

.support-status-list {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.support-status-list span {
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 700;
}

.support-section,
.faq-section {
    padding: 95px 0;
}

.support-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.support-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 243, 0.27);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.09);
}

.support-card > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 16px;
    background: var(--primary-light);
    font-size: 24px;
}

.support-card h3 {
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 20px;
}

.support-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.support-card a {
    display: inline-flex;
    margin-top: 21px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.support-no-result {
    margin: 40px 0 0;
    color: var(--muted);
    text-align: center;
    font-weight: 700;
}

.support-contact-section {
    padding: 15px 0 90px;
}

.support-contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(38px, 6vw, 65px);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 83% 10%,
            rgba(0, 184, 230, 0.24),
            transparent 30%
        ),
        #f3f8ff;
}

.support-contact-panel h2 {
    max-width: 760px;
    margin: 4px 0 12px;
    color: var(--dark);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
}

.support-contact-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.support-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* FAQ */

.faq-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-hero-content > p {
    margin-right: auto;
    margin-left: auto;
}

.faq-search-box {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}

.faq-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: 50px;
}

.faq-navigation {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 7px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
}

.faq-navigation strong {
    margin-bottom: 9px;
    color: var(--dark);
    font-size: 15px;
}

.faq-navigation a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.faq-navigation a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.faq-content {
    min-width: 0;
}

.faq-category {
    scroll-margin-top: 110px;
    margin-bottom: 45px;
}

.faq-category h2 {
    margin: 0 0 18px;
    color: var(--dark);
    font-size: 29px;
}

.faq-category details {
    margin-bottom: 12px;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 24, 40, 0.04);
}

.faq-category summary {
    padding: 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.faq-category details p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--muted);
    line-height: 1.75;
}


@media (max-width: 1050px) {
    .support-hero-grid {
        grid-template-columns: 1fr;
    }

    .support-status-card {
        width: min(100%, 720px);
    }

    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-navigation {
        position: static;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .faq-navigation strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .support-hero,
    .faq-hero {
        padding: 58px 0 70px;
    }

    .support-hero h1,
    .faq-hero h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2.2px;
    }

    .support-hero-content > p,
    .faq-hero-content > p {
        font-size: 16px;
    }

    .support-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .support-hero-actions .button {
        width: 100%;
        justify-content: center;
    }

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

    .support-section,
    .faq-section {
        padding: 70px 0;
    }

    .support-contact-panel {
        align-items: stretch;
        flex-direction: column;
    }

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

    .support-contact-actions .button,
    .support-contact-panel > .button {
        width: 100%;
        justify-content: center;
    }

    .faq-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .support-status-card {
        border-radius: 22px;
    }

    .support-search-box {
        min-height: 56px;
        padding: 0 15px;
    }

    .faq-navigation {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MARCUS GUIDE PAGES 2026
   ========================================================= */

.guide-page {
    overflow: hidden;
    background: #ffffff;
}

.guide-hero {
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(0, 184, 230, 0.16),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 12%,
            rgba(18, 104, 243, 0.10),
            transparent 28%
        ),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.guide-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 95px);
}

.guide-kicker {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.guide-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.guide-hero h1 strong {
    display: block;
    color: var(--primary);
}

.guide-hero-content > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.guide-tags span {
    padding: 10px 14px;
    border: 1px solid rgba(18, 104, 243, 0.13);
    border-radius: 999px;
    color: var(--dark-soft);
    background: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 750;
}

.guide-summary-card {
    padding: clamp(30px, 4vw, 43px);
    border: 1px solid rgba(18, 104, 243, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 75px rgba(16, 24, 40, 0.13);
}

.guide-summary-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    background: var(--primary-light);
    font-size: 30px;
}

.guide-status {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #087a45;
    background: #eafbf2;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.guide-summary-card h2 {
    margin: 0;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.25;
}

.guide-check-list {
    display: grid;
    gap: 13px;
    margin-top: 25px;
}

.guide-check-list span {
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 700;
}

.guide-section {
    padding: 95px 0;
}

.guide-steps {
    display: grid;
    max-width: 970px;
    gap: 18px;
    margin: 50px auto 0;
}

.guide-step {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
}

.guide-step-number {
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

.guide-step-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 23px;
}

.guide-step h3 {
    margin: 0 0 9px;
    color: var(--dark);
    font-size: 21px;
}

.guide-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.guide-step a {
    display: inline-flex;
    margin-top: 17px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.guide-feature-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.guide-feature-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.guide-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 104, 243, 0.27);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.09);
}

.guide-feature-card > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 19px;
    border-radius: 16px;
    background: var(--primary-light);
    font-size: 24px;
}

.guide-feature-card h3 {
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 20px;
}

.guide-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.guide-dark-section {
    padding: 10px 0 90px;
}

.guide-dark-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 50px;
    padding: clamp(38px, 6vw, 67px);
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(0, 184, 230, 0.43),
            transparent 32%
        ),
        linear-gradient(135deg, #071a3d, #0849b8);
}

.guide-dark-panel h2 {
    margin: 5px 0 16px;
    color: #ffffff;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
}

.guide-dark-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.guide-dark-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.guide-dark-list span {
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 750;
}

.automation-flow {
    display: grid;
    align-items: center;
    margin: 50px 0;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    gap: 18px;
}

.automation-flow article {
    min-height: 190px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
}

.automation-flow article > span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.automation-flow strong {
    display: block;
    color: var(--dark);
    font-size: 19px;
}

.automation-flow p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.automation-flow > i {
    color: var(--primary);
    font-size: 25px;
    font-style: normal;
    font-weight: 900;
}

.guide-final-section {
    padding: 10px 0 90px;
}

.guide-final-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(38px, 6vw, 65px);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 83% 10%,
            rgba(0, 184, 230, 0.24),
            transparent 30%
        ),
        #f3f8ff;
}

.guide-final-panel h2 {
    max-width: 760px;
    margin: 4px 0 0;
    color: var(--dark);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
}


@media (max-width: 1050px) {
    .guide-hero-grid,
    .guide-dark-panel {
        grid-template-columns: 1fr;
    }

    .guide-summary-card {
        width: min(100%, 720px);
    }

    .guide-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .automation-flow {
        grid-template-columns: 1fr;
    }

    .automation-flow > i {
        transform: rotate(90deg);
        text-align: center;
    }
}


@media (max-width: 720px) {
    .guide-hero {
        padding: 58px 0 70px;
    }

    .guide-hero h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2.2px;
    }

    .guide-hero-content > p {
        font-size: 16px;
    }

    .guide-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .guide-actions .button {
        width: 100%;
        justify-content: center;
    }

    .guide-section {
        padding: 70px 0;
    }

    .guide-feature-grid {
        grid-template-columns: 1fr;
    }

    .guide-step {
        grid-template-columns: 1fr;
    }

    .guide-dark-list {
        grid-template-columns: 1fr;
    }

    .guide-final-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .guide-final-panel .button {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 430px) {
    .guide-summary-card {
        border-radius: 22px;
    }

    .guide-step,
    .guide-feature-card {
        padding: 23px;
    }
}


/* =========================================================
   MARCUS CONTACT PAGE 2026
   ========================================================= */

.contact-page {
    overflow: hidden;
    background: #ffffff;
}

.contact-hero {
    padding: 100px 0 90px;
    background:
        radial-gradient(
            circle at 83% 20%,
            rgba(0, 184, 230, 0.16),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 12%,
            rgba(18, 104, 243, 0.10),
            transparent 28%
        ),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 95px);
}

.contact-kicker {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.contact-hero h1 strong {
    display: block;
    color: var(--primary);
}

.contact-hero-content > p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 35px;
}

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.contact-tags span {
    padding: 10px 14px;
    border: 1px solid rgba(18, 104, 243, 0.13);
    border-radius: 999px;
    color: var(--dark-soft);
    background: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 750;
}

.contact-info-card {
    padding: clamp(30px, 4vw, 43px);
    border: 1px solid rgba(18, 104, 243, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 75px rgba(16, 24, 40, 0.13);
}

.contact-info-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    background: var(--primary-light);
    font-size: 30px;
}

.contact-info-status {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #087a45;
    background: #eafbf2;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.contact-info-card h2 {
    margin: 0;
    color: var(--dark);
    font-size: 27px;
    line-height: 1.25;
}

.contact-info-list {
    display: grid;
    gap: 19px;
    margin-top: 29px;
}

.contact-info-list div {
    padding-top: 17px;
    border-top: 1px solid var(--border);
}

.contact-info-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.contact-info-list a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.contact-section {
    padding: 95px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: start;
    gap: 35px;
}

.contact-form-panel {
    padding: clamp(28px, 5vw, 50px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(16, 24, 40, 0.08);
}

.contact-panel-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.12;
}

.contact-panel-heading p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 21px;
    margin-top: 35px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-field {
    display: grid;
    gap: 9px;
}

.contact-field label {
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.contact-field label span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #d8e0ec;
    border-radius: 13px;
    outline: none;
    color: var(--dark);
    background: #ffffff;
    font: inherit;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.contact-field input,
.contact-field select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-field textarea {
    min-height: 170px;
    padding: 15px;
    resize: vertical;
    line-height: 1.6;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18, 104, 243, 0.10);
}

.contact-field small {
    color: var(--muted);
    font-size: 11px;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    line-height: 1.6;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
}

.contact-submit {
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.contact-form-note {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.contact-form-note a {
    color: var(--primary);
    font-weight: 800;
}

.contact-form-message {
    padding: 15px 17px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.contact-form-message.is-success {
    border: 1px solid #b9ead0;
    color: #087a45;
    background: #eafbf2;
}

.contact-form-message.is-error {
    border: 1px solid #f0c5c5;
    color: #a13232;
    background: #fff2f2;
}

.contact-form-message a {
    color: inherit;
    text-decoration: underline;
}

.contact-reasons {
    display: grid;
    gap: 17px;
}

.contact-reasons article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.contact-reasons article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-light);
    font-size: 22px;
}

.contact-reasons h3 {
    margin: 2px 0 8px;
    color: var(--dark);
    font-size: 18px;
}

.contact-reasons p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.contact-reasons a {
    display: inline-flex;
    margin-top: 13px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.contact-final-section {
    padding: 10px 0 90px;
}

.contact-final-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(38px, 6vw, 65px);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 83% 10%,
            rgba(0, 184, 230, 0.24),
            transparent 30%
        ),
        #f3f8ff;
}

.contact-final-panel h2 {
    max-width: 760px;
    margin: 4px 0 0;
    color: var(--dark);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.1;
}


@media (max-width: 1050px) {
    .contact-hero-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        width: min(100%, 720px);
    }
}


@media (max-width: 720px) {
    .contact-hero {
        padding: 58px 0 70px;
    }

    .contact-hero h1 {
        font-size: clamp(39px, 12vw, 55px);
        letter-spacing: -2.2px;
    }

    .contact-hero-content > p {
        font-size: 16px;
    }

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

    .contact-hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .contact-section {
        padding: 70px 0;
    }

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

    .contact-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-final-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-final-panel .button {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 430px) {
    .contact-info-card,
    .contact-form-panel {
        border-radius: 22px;
    }

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

/* MARCUS PRICING DESKTOP START */
@media (min-width: 961px) {
    .pricing-grid.pricing-grid-four {
        max-width: 1180px;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        align-items: stretch;
        gap: 22px;
    }

    .pricing-grid.pricing-grid-four > .pricing-card {
        grid-column: span 2;
        height: 100%;
        transition:
            transform 200ms ease,
            box-shadow 200ms ease,
            border-color 200ms ease;
    }

    .pricing-grid.pricing-grid-four > .pricing-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .pricing-grid.pricing-grid-four > .pricing-card:nth-child(5) {
        grid-column: 4 / span 2;
    }

    .pricing-grid.pricing-grid-four > .pricing-card:hover {
        transform: translateY(-7px);
        border-color: #c7d9f2;
        box-shadow: 0 26px 65px rgba(17, 24, 39, 0.14);
    }

    .pricing-grid.pricing-grid-four > .pricing-featured {
        transform: translateY(-12px);
    }

    .pricing-grid.pricing-grid-four > .pricing-featured:hover {
        transform: translateY(-18px);
        box-shadow: 0 34px 80px rgba(18, 104, 243, 0.34);
    }

    .pricing-grid.pricing-grid-four .pricing-description {
        min-height: 72px;
    }

    .pricing-grid.pricing-grid-four .full-button {
        margin-top: auto;
    }
}
/* MARCUS PRICING DESKTOP END */

/* Aération entre les deux lignes de tarifs sur ordinateur */
@media (min-width: 961px) {
    .pricing-grid.pricing-grid-four {
        row-gap: 48px;
    }
}



/* ==========================================================
   MARCUS IA — TOPBAR LOGOUT
   ========================================================== */

.topbar-logout-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 14px;
    background: #ffffff;
    color: #1e3a8a;
    font: inherit;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.topbar-logout-button span {
    font-size: 18px;
    line-height: 1;
}

.topbar-logout-button strong {
    font-size: 13px;
    font-weight: 800;
}

.topbar-logout-button:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.34);
    background: #eff6ff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.topbar-logout-button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.22);
    outline-offset: 2px;
}

@media (max-width: 1180px) {
    .topbar-logout-button strong {
        display: none;
    }

    .topbar-logout-button {
        width: 46px;
        padding: 0;
    }
}

@media (max-width: 760px) {
    .topbar-logout-button {
        display: none;
    }
}

/* END MARCUS IA — TOPBAR LOGOUT */


/* MARCUS IA — LOGOUT PREMIUM V2 */

.dashboard-topbar .topbar-logout-button {
    position: relative;
    min-width: 142px !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 0 20px !important;

    border: 1px solid rgba(37, 99, 235, 0.24) !important;
    border-radius: 15px !important;

    background:
        linear-gradient(
            135deg,
            #0f3fa8 0%,
            #2563eb 55%,
            #3b82f6 100%
        ) !important;

    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;

    cursor: pointer !important;
    overflow: hidden !important;

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease !important;
}

.dashboard-topbar .topbar-logout-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.2) 48%,
            transparent 72%
        );
    transform: translateX(-130%);
    transition: transform 500ms ease;
}

.dashboard-topbar .topbar-logout-button:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.06) !important;

    box-shadow:
        0 15px 32px rgba(37, 99, 235, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
}

.dashboard-topbar .topbar-logout-button:hover::before {
    transform: translateX(130%);
}

.dashboard-topbar .topbar-logout-button:active {
    transform: translateY(0) scale(0.98) !important;
}

.dashboard-topbar .topbar-logout-button:focus-visible {
    outline: 4px solid rgba(59, 130, 246, 0.2) !important;
    outline-offset: 3px !important;
}

.dashboard-topbar .topbar-logout-button span {
    position: relative;
    z-index: 1;

    width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;
    background: rgba(255, 255, 255, 0.16);

    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.dashboard-topbar .topbar-logout-button strong {
    position: relative;
    z-index: 1;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

@media (max-width: 1180px) {
    .dashboard-topbar .topbar-logout-button {
        min-width: 48px !important;
        width: 48px !important;
        padding: 0 !important;
    }

    .dashboard-topbar .topbar-logout-button strong {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .dashboard-topbar .topbar-logout-button {
        display: none !important;
    }
}

/* END MARCUS IA — LOGOUT PREMIUM V2 */


/* MARCUS IA — DASHBOARD RESUME V2 */

.dashboard-main-grid-v2 {
    align-items: stretch;
}

.resume-work-panel,
.dashboard-activity-panel {
    min-height: 345px;
}

.dashboard-panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 12px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.dashboard-panel-link:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
    background: #dbeafe;
}

.dashboard-resume-loading,
.dashboard-resume-empty {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 28px;
    border: 1px dashed rgba(37, 99, 235, 0.2);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(239, 246, 255, 0.8),
            rgba(248, 250, 252, 0.9)
        );
}

.dashboard-resume-loading[hidden],
.dashboard-resume-empty[hidden],
.dashboard-resume-card[hidden] {
    display: none !important;
}

.dashboard-loading-icon,
.dashboard-empty-illustration {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    flex: 0 0 62px;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #3b82f6
        );
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.dashboard-resume-loading strong,
.dashboard-resume-empty strong {
    display: block;
    margin-bottom: 7px;
    color: #0f172a;
    font-size: 16px;
}

.dashboard-resume-loading p,
.dashboard-resume-empty p {
    max-width: 470px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.dashboard-resume-card {
    position: relative;
    min-height: 220px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    padding: 29px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 23px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(147, 197, 253, 0.26),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #eff6ff
        );
}

.dashboard-resume-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -100px;
    bottom: -120px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 50%;
}

.dashboard-resume-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            #0f3fa8,
            #2563eb
        );
    color: #ffffff;
    font-size: 29px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.dashboard-resume-content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.dashboard-resume-content > span {
    display: block;
    margin-bottom: 7px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-resume-content h4 {
    overflow: hidden;
    margin: 0;
    color: #0f172a;
    font-size: 21px;
    letter-spacing: -0.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-resume-content p {
    margin: 10px 0 15px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.dashboard-resume-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.dashboard-resume-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #475569;
    font-size: 11px;
    font-weight: 750;
}

.dashboard-resume-button,
.dashboard-primary-button {
    position: relative;
    z-index: 2;
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 18px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #0f3fa8,
            #2563eb
        );
    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 13px 28px rgba(37, 99, 235, 0.22);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.dashboard-resume-button:hover,
.dashboard-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
}

.dashboard-resume-empty {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.dashboard-resume-empty .dashboard-primary-button {
    margin-left: auto;
}

.dashboard-live-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 31px;
    padding: 0 11px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 800;
}

.dashboard-live-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.dashboard-statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.dashboard-statistic-card {
    min-height: 91px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 17px;
    background: #f8fafc;
    color: inherit;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.dashboard-statistic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.25);
    background: #eff6ff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.dashboard-statistic-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    border-radius: 14px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 19px;
}

.dashboard-statistic-card strong {
    display: block;
    color: #0f172a;
    font-size: 23px;
    line-height: 1;
}

.dashboard-statistic-card small {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 11px;
    font-weight: 750;
}

.dashboard-activity-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-activity-footer > span {
    color: #64748b;
    font-size: 11px;
}

.dashboard-activity-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

@media (max-width: 1120px) {
    .dashboard-resume-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .dashboard-resume-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 650px) {
    .dashboard-resume-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dashboard-resume-icon {
        margin: 0 auto;
    }

    .dashboard-resume-meta {
        justify-content: center;
    }

    .dashboard-resume-empty {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-resume-empty .dashboard-primary-button {
        width: 100%;
        margin-left: 0;
    }

    .dashboard-statistics-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-activity-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* END MARCUS IA — DASHBOARD RESUME V2 */
