:root {
    --primary: #2DAAE1;
    --secondary: #202953;
    --secondary-deep: #111827;
    --white: #ffffff;
    --light: #f5f9fc;
    --dark: #0f172a;
    --border: #dbe4ec;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--dark); background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.site-header { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 99; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--secondary); }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a:not(.btn) { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 10px 14px; border-radius: 8px; color: var(--secondary); font-weight: 700; transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; border-radius: 999px; background: var(--primary); opacity: 0; transform: scaleX(.35); transform-origin: center; transition: opacity .22s ease, transform .22s ease; }
.main-nav > a:not(.btn):hover, .main-nav > a:not(.btn):focus-visible { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: var(--white); box-shadow: 0 12px 24px rgba(45,170,225,.22); transform: translateY(-2px); outline: 0; }
.main-nav > a:not(.btn):hover::after, .main-nav > a:not(.btn):focus-visible::after { opacity: 1; transform: scaleX(1); background: var(--white); }
.nav-toggle { position: relative; z-index: 3; display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); cursor: pointer; touch-action: manipulation; }
.nav-toggle span { width: 22px; height: 2px; border-radius: 999px; background: var(--secondary); transition: transform .22s ease, opacity .22s ease, background .22s ease; }
.site-header.nav-open .nav-toggle { background: linear-gradient(135deg, var(--secondary), var(--primary)); border-color: transparent; }
.site-header.nav-open .nav-toggle span { background: var(--white); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 8px; font-weight: 700; border: 0; cursor: pointer; transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; }
.btn-primary { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: var(--white); }
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: 0 14px 30px rgba(45,170,225,.28); transform: translateY(-2px); outline: 0; }
.btn-outline { border: 1px solid var(--secondary); color: var(--secondary); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--secondary); color: var(--white); transform: translateY(-2px); outline: 0; }
.btn-dark { background: #05070c; color: var(--white); }
.btn-dark:hover, .btn-dark:focus-visible { background: var(--secondary); box-shadow: 0 14px 30px rgba(15,23,42,.18); transform: translateY(-2px); outline: 0; }
.btn-danger { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }
.btn-danger:hover, .btn-danger:focus-visible { background: #be123c; color: var(--white); transform: translateY(-2px); outline: 0; }
.hero-section { background: linear-gradient(135deg, rgba(22,58,112,.96), rgba(53,168,223,.92)); color: var(--white); padding: 72px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; background: rgba(255,255,255,.12); padding: 8px 14px; border-radius: 999px; margin-bottom: 16px; }
.hero-section h1, .page-banner h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; margin: 0 0 16px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-visual img { border-radius: 22px; box-shadow: 0 20px 50px rgba(0,0,0,.24); }
.section { padding: 72px 0; }
.page-banner { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: var(--white); padding: 56px 0; }
.cards-3, .cards-4 { display: grid; gap: 22px; margin-top: 28px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .form-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 24px; box-shadow: 0 10px 30px rgba(15,23,42,.05); }
.service-card { overflow: hidden; }
.service-card-image { width: calc(100% + 48px); max-width: none; height: 190px; object-fit: cover; margin: -24px -24px 20px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; }
form input, form select, form textarea { width: 100%; padding: 14px 16px; margin-bottom: 14px; border: 1px solid var(--border); border-radius: 12px; font: inherit; }
.two-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.two-columns textarea, .two-columns button { grid-column: 1 / -1; }
.site-footer { background: #0c0f1a; color: var(--white); margin-top: 40px; }
.footer-newsletter { background: linear-gradient(135deg, var(--secondary), var(--primary)); padding: 44px 0; }
.footer-newsletter-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: 36px; align-items: start; }
.footer-newsletter h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.12; margin: 0 0 18px; max-width: 720px; }
.footer-newsletter p { margin: 0; font-size: 1.08rem; line-height: 1.7; max-width: 680px; }
.newsletter-form { display: grid; gap: 18px; }
.newsletter-input { display: flex; align-items: center; gap: 14px; min-height: 68px; background: var(--white); color: var(--dark); border-radius: 999px; padding: 8px 10px 8px 24px; }
.newsletter-input span { color: var(--primary); font-weight: 800; }
.newsletter-input input { border: 0; margin: 0; padding: 10px 0; min-width: 0; flex: 1; font-size: 1rem; outline: 0; }
.newsletter-input button { border: 0; border-radius: 999px; background: #05070c; color: var(--white); padding: 16px 26px; font-weight: 800; cursor: pointer; white-space: nowrap; }
.newsletter-consent { display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; font-weight: 600; }
.newsletter-consent input { width: auto; margin: 4px 0 0; }
.footer-contact-band { background: #171a25; border-bottom: 1px solid rgba(255,255,255,.08); padding: 38px 0; }
.footer-contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.footer-contact-item { min-height: 128px; display: grid; grid-template-columns: 28px 1fr; gap: 18px; align-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 22px; background: rgba(255,255,255,.035); }
.footer-contact-icon { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 8px rgba(45,170,225,.12); }
.footer-contact-item h3, .footer-main h3 { margin: 0 0 12px; text-transform: uppercase; font-size: .94rem; color: #b8c0cd; }
.footer-contact-item p { margin: 0; font-size: 1.05rem; line-height: 1.55; font-weight: 700; }
.footer-main { background: #0c0f1a; padding: 54px 0 34px; }
.footer-main-grid { display: grid; grid-template-columns: 1.25fr .9fr .9fr .9fr; gap: 44px; align-items: start; }
.footer-brand-block img { width: 92px; height: 92px; object-fit: contain; margin-bottom: 18px; }
.footer-brand-block p { margin: 0; line-height: 1.7; color: #e8edf5; max-width: 420px; }
.footer-main h3 { color: var(--white); padding-bottom: 14px; border-bottom: 2px solid rgba(45,170,225,.6); }
.footer-main ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.footer-main a { color: #edf4fb; }
.footer-main a:hover { color: var(--primary); }
.footer-extra { background: #0c0f1a; border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0 48px; }
.footer-extra-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr); gap: 30px; align-items: start; }
.footer-socials { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-socials a { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--white); font-weight: 900; transition: background .22s ease, transform .22s ease; }
.footer-socials a:hover, .footer-socials a:focus-visible { background: var(--primary); transform: translateY(-3px); outline: 0; }
.footer-partners h3 { margin: 0; color: var(--white); font-size: 1.25rem; }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); color: #cbd5e1; background: #090b12; }
.footer-bottom-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom-grid p { margin: 0; }
.footer-bottom-grid a { color: #e8edf5; }
.footer-payments { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; text-transform: uppercase; }
.footer-payments span { color: #aeb7c4; }
.footer-payments strong { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; color: var(--white); text-transform: none; background: rgba(255,255,255,.06); }
.footer-payments strong:nth-of-type(1) { background: rgba(45,170,225,.18); border-color: rgba(45,170,225,.5); }
.footer-payments strong:nth-of-type(2) { background: rgba(255,122,0,.18); border-color: rgba(255,122,0,.45); }
.footer-admin-link { padding: 9px 16px; border: 1px dashed rgba(255,255,255,.16); border-radius: 999px; color: #aeb7c4 !important; }
.admin-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); min-height: 100vh; }
.admin-sidebar { align-content: start; background: linear-gradient(180deg, #202953, #141724); color: var(--white); padding: 22px; display: grid; gap: 18px; }
.admin-sidebar-logo { display: inline-flex; align-items: center; width: 128px; padding: 8px; border-radius: 8px; background: rgba(255,255,255,.06); }
.admin-sidebar-logo img { width: 100%; height: 58px; object-fit: contain; }
.admin-sidebar-nav { display: grid; gap: 10px; }
.admin-sidebar a, .admin-logout { border-radius: 8px; padding: 12px 14px; transition: background .2s ease, transform .2s ease; }
.admin-sidebar-nav a:hover, .admin-sidebar-nav a:focus-visible, .admin-logout:hover, .admin-logout:focus-visible { background: rgba(45,170,225,.22); transform: translateX(3px); outline: 0; }
.admin-user { margin: 0 0 8px; color: #d8eef9; font-size: .9rem; }
.admin-sidebar-user { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.06); }
.admin-sidebar-user strong { display: block; line-height: 1.25; }
.admin-sidebar-user small, .admin-profile-card small { display: flex; align-items: center; gap: 6px; margin-top: 4px; color: #d8eef9; font-weight: 700; }
.admin-sidebar-user small i, .admin-profile-card small i, .admin-user-meta i { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.16); }
.admin-quick-search { display: grid; gap: 12px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.07); }
.admin-quick-search input { width: 100%; margin: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(0,0,0,.12); color: var(--white); }
.admin-quick-search input::placeholder { color: rgba(255,255,255,.62); }
.admin-quick-search div { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-quick-search span { display: inline-flex; min-height: 36px; align-items: center; padding: 7px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-weight: 800; color: #edf4fb; }
.admin-sidebar form { margin: 10px 0 0; }
.admin-logout { width: 100%; border: 1px solid rgba(255,255,255,.18); background: transparent; color: var(--white); font: inherit; text-align: left; cursor: pointer; }
.admin-content { min-width: 0; padding: 34px; background: linear-gradient(180deg, #eef6fb, var(--light)); }
.admin-page-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.admin-page-head h1 { margin: 4px 0 0; }
.admin-kicker { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: .8rem; }
.alert-success { background: #e8f8ef; border: 1px solid #b8e7c9; color: #125c2e; padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-weight: 700; }
.alert-error { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-weight: 700; }
.admin-form { display: grid; gap: 20px; }
.admin-panel { min-width: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 22px; box-shadow: 0 10px 30px rgba(15,23,42,.05); }
.admin-panel h2 { margin: 0 0 18px; font-size: 1.2rem; color: var(--secondary); }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-panel label { display: grid; gap: 8px; font-weight: 800; color: var(--secondary); }
.admin-panel input, .admin-panel textarea { margin: 0; border-radius: 8px; }
.admin-check-label { align-content: center; display: flex !important; flex-direction: row; gap: 10px !important; align-items: center; min-height: 50px; }
.admin-check-label input { width: auto; margin: 0; }
.admin-actions { display: flex; justify-content: flex-end; }
.admin-table-wrap { max-width: 100%; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.admin-table th { color: var(--secondary); font-size: .84rem; text-transform: uppercase; }
.admin-thumb { width: 82px; height: 58px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }
.admin-muted { color: #64748b; }
.admin-image-preview { display: flex; align-items: center; gap: 14px; margin: 16px 0; color: #64748b; font-weight: 700; }
.admin-image-preview img { width: 150px; height: 92px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); }
.admin-table-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-table-actions form { margin: 0; }
.dashboard-hero { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; padding: 36px 40px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); box-shadow: 0 18px 45px rgba(15,23,42,.08); margin-bottom: 28px; }
.dashboard-hero h1 { margin: 8px 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; color: var(--dark); }
.dashboard-hero p { margin: 0; max-width: 780px; color: #475569; font-size: 1.08rem; line-height: 1.7; }
.dashboard-hero-side { display: grid; gap: 16px; justify-items: stretch; }
.admin-profile-card { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 8px; background: #f8fbfe; box-shadow: 0 12px 34px rgba(15,23,42,.08); }
.admin-profile-card strong { display: block; color: var(--dark); font-size: 1.08rem; }
.admin-profile-card small { color: #475569; }
.admin-avatar-wrap { position: relative; width: 58px; height: 58px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--primary)); display: grid; place-items: center; color: var(--white); font-weight: 900; overflow: hidden; box-shadow: 0 8px 20px rgba(15,23,42,.14); }
.admin-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.dashboard-status-pills { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.dashboard-status-pills span { display: inline-flex; align-items: center; min-height: 42px; padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px; background: #f8fbfe; color: var(--secondary); font-weight: 800; }
.dashboard-card { transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.dashboard-card:hover, .dashboard-card:focus-visible { border-color: rgba(45,170,225,.6); box-shadow: 0 18px 38px rgba(15,23,42,.1); transform: translateY(-3px); outline: 0; }
.dashboard-content-panel { margin-top: 26px; }
.dashboard-content-menu { display: flex; flex-wrap: wrap; gap: 14px; }
.dashboard-content-menu a { display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 11px 18px; border: 1px solid var(--border); border-radius: 999px; background: #f8fbfe; color: var(--dark); font-weight: 900; transition: border-color .22s ease, color .22s ease, background .22s ease, transform .22s ease; }
.dashboard-content-menu a:hover, .dashboard-content-menu a:focus-visible { border-color: var(--primary); color: var(--white); background: linear-gradient(135deg, var(--secondary), var(--primary)); transform: translateY(-2px); outline: 0; }
.dashboard-actions-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.dashboard-action { display: grid; gap: 8px; padding: 18px; border: 1px solid var(--border); border-radius: 8px; background: #f8fbfe; transition: border-color .22s ease, background .22s ease, transform .22s ease; }
.dashboard-action strong { color: var(--secondary); font-size: 1.02rem; }
.dashboard-action span { color: #475569; line-height: 1.55; }
.dashboard-action:hover, .dashboard-action:focus-visible { border-color: var(--primary); background: #eef9ff; transform: translateY(-2px); outline: 0; }
.admin-auth { min-height: 70vh; display: grid; place-items: center; background: var(--light); }
.auth-card { width: min(420px, 92%); background: var(--white); padding: 28px; border-radius: 18px; box-shadow: 0 10px 30px rgba(15,23,42,.08); }
.auth-intro { color: #475569; line-height: 1.6; }
.admin-users-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-user-card { display: grid; grid-template-columns: 68px 1fr; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--border); border-radius: 8px; background: #f8fbfe; }
.admin-user-card h2 { margin: 0 0 6px; color: var(--dark); font-size: 1.1rem; }
.admin-user-card p { margin: 0 0 12px; color: #475569; }
.admin-user-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-user-meta span { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 5px 10px; border-radius: 999px; background: var(--white); border: 1px solid var(--border); color: var(--secondary); font-weight: 800; font-size: .82rem; }
.admin-user-meta .is-offline i { background: #94a3b8; box-shadow: 0 0 0 4px rgba(148,163,184,.16); }

/* Administration polished dashboard */
.admin-body { background: #eef5f9; }
.admin-dashboard-layout { grid-template-columns: 276px minmax(0, 1fr); background: #eef5f9; }
.admin-dashboard-layout .admin-content { padding: 28px 34px 40px; background: radial-gradient(circle at 20% 0%, rgba(45,170,225,.12), transparent 36%), #eef5f9; }
.admin-sidebar { position: sticky; top: 0; min-height: 100vh; gap: 12px; padding: 20px 18px; background: linear-gradient(180deg, #202953 0%, #151b39 54%, #0f1428 100%); box-shadow: inset -1px 0 0 rgba(255,255,255,.08); }
.admin-sidebar-logo { width: 146px; padding: 6px 10px; margin: 0 0 6px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); }
.admin-sidebar-logo img { height: 48px; object-fit: contain; }
.admin-quick-search { gap: 10px; padding: 14px; border-radius: 8px; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }
.admin-quick-search strong { font-size: .95rem; }
.admin-quick-search input { min-height: 42px; padding: 10px 12px; border-radius: 8px; font-size: .92rem; }
.admin-quick-search div { gap: 7px; }
.admin-quick-search span { min-height: 32px; padding: 5px 10px; font-size: .82rem; }
.admin-sidebar-nav { gap: 5px; margin-top: 4px; }
.admin-sidebar-nav a { position: relative; min-height: 42px; display: flex; align-items: center; padding: 10px 12px 10px 16px; border-radius: 8px; color: #e8eef8; font-weight: 800; letter-spacing: 0; }
.admin-sidebar-nav a::before { content: ""; width: 7px; height: 7px; margin-right: 10px; border-radius: 50%; background: rgba(255,255,255,.32); transition: background .2s ease, box-shadow .2s ease; }
.admin-sidebar-nav a:hover, .admin-sidebar-nav a:focus-visible, .admin-sidebar-nav a.is-active { background: linear-gradient(135deg, rgba(45,170,225,.25), rgba(255,255,255,.12)); transform: none; }
.admin-sidebar-nav a.is-active::before { background: var(--primary); box-shadow: 0 0 0 5px rgba(45,170,225,.16); }
.admin-sidebar-user { margin-top: auto; padding: 10px; border-radius: 8px; background: rgba(255,255,255,.08); }
.admin-sidebar-user strong { font-size: .9rem; }
.admin-sidebar-user small { font-size: .78rem; color: #dbeafe; }
.admin-logout { min-height: 40px; padding: 9px 12px; border-radius: 8px; font-weight: 800; }
.admin-avatar-wrap { overflow: hidden; border-radius: 50%; }
.admin-avatar-wrap img { width: 100% !important; height: 100% !important; max-width: none !important; object-fit: cover !important; border-radius: 50% !important; }
.dashboard-account-card .admin-avatar-wrap img,
.admin-sidebar-user .admin-avatar-wrap img,
.admin-user-card .admin-avatar-wrap img { width: inherit !important; height: inherit !important; aspect-ratio: 1 / 1; }
.sidebar-avatar { width: 38px; height: 38px; box-shadow: none; font-size: .95rem; }
.dashboard-avatar { width: 46px; height: 46px; box-shadow: 0 10px 22px rgba(15,23,42,.16); }
.dashboard-hero-polished { position: relative; grid-template-columns: minmax(0, 1fr) 430px; gap: 30px; min-height: 280px; align-items: start; padding: 34px 36px; border-radius: 8px; border-color: rgba(32,41,83,.12); background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,252,255,.96)); box-shadow: 0 24px 60px rgba(15,23,42,.1); overflow: hidden; }
.dashboard-hero-polished::after { content: ""; position: absolute; right: -80px; top: -100px; width: 280px; height: 280px; border-radius: 50%; background: rgba(45,170,225,.1); pointer-events: none; }
.dashboard-hero-main { position: relative; z-index: 1; }
.dashboard-hero-main .admin-kicker { color: #0e7490; font-size: .78rem; letter-spacing: .08em; }
.dashboard-hero-polished h1 { display: flex; align-items: center; gap: 14px; margin: 12px 0 18px; font-size: clamp(2.4rem, 4vw, 3.45rem); letter-spacing: 0; }
.dashboard-title-mark { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--primary)); box-shadow: 0 12px 28px rgba(45,170,225,.28); }
.dashboard-hero-polished p { max-width: 760px; color: #44546a; font-size: 1.08rem; line-height: 1.72; }
.dashboard-status-pills { gap: 12px; margin-top: 24px; }
.dashboard-status-pills span { min-height: 40px; padding: 8px 14px; border-radius: 999px; background: #f7fbff; color: var(--secondary); border-color: #d7e4ef; box-shadow: inset 0 1px 0 rgba(255,255,255,.75); }
.dashboard-account { position: relative; z-index: 1; justify-self: end; width: min(100%, 410px); display: grid; gap: 16px; }
.dashboard-account-card { display: flex; align-items: center; gap: 12px; justify-self: end; min-width: 290px; max-width: 100%; padding: 10px 14px 10px 10px; border-radius: 999px; background: rgba(255,255,255,.94); border: 1px solid rgba(215,228,239,.95); box-shadow: 0 18px 40px rgba(15,23,42,.12); }
.dashboard-account-card strong { display: block; color: var(--dark); font-size: 1rem; line-height: 1.18; white-space: nowrap; }
.dashboard-account-card small { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; color: #64748b; font-weight: 800; }
.dashboard-account-card small i { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.16); }
.dashboard-account-actions { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; align-items: center; }
.dashboard-account-actions .btn { min-height: 54px; border-radius: 8px; padding-inline: 18px; white-space: nowrap; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 22px 0 28px; }
.dashboard-metric-card { min-height: 150px; display: grid; align-content: center; gap: 10px; padding: 22px 24px; border: 1px solid #d7e4ef; border-radius: 8px; background: var(--white); box-shadow: 0 16px 38px rgba(15,23,42,.06); transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.dashboard-metric-card:hover, .dashboard-metric-card:focus-visible { border-color: rgba(45,170,225,.65); transform: translateY(-3px); box-shadow: 0 22px 46px rgba(15,23,42,.1); outline: 0; }
.dashboard-metric-card span { color: #64748b; font-weight: 800; text-transform: uppercase; font-size: .78rem; }
.dashboard-metric-card strong { color: var(--dark); font-size: 2rem; line-height: 1; }
.dashboard-metric-card small { color: #475569; font-size: .96rem; }
.dashboard-content-polished, .dashboard-actions-panel { border-color: #d7e4ef; box-shadow: 0 18px 42px rgba(15,23,42,.06); }
.dashboard-content-polished .admin-page-head { margin-bottom: 18px; }
.dashboard-content-polished h2, .dashboard-actions-panel h2 { font-size: 1.45rem; margin-bottom: 6px; }
.dashboard-content-menu { gap: 11px; }
.dashboard-content-menu a { min-height: 44px; padding: 8px 14px 8px 9px; border-radius: 999px; background: #f8fbfe; border-color: #d7e4ef; color: var(--dark); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.dashboard-content-menu a span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(45,170,225,.12); color: var(--secondary); font-size: .7rem; font-weight: 900; }
.dashboard-content-menu a:hover span, .dashboard-content-menu a:focus-visible span { background: rgba(255,255,255,.18); color: var(--white); }
.dashboard-action { border-radius: 8px; background: #f8fbfe; }
.dashboard-action strong { font-size: 1rem; }
.dashboard-action span { font-size: .94rem; }

@media (max-width: 1180px) {
  .dashboard-hero-polished { grid-template-columns: 1fr; }
  .dashboard-account { justify-self: stretch; width: 100%; }
  .dashboard-account-card { justify-self: start; }
  .dashboard-account-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .admin-dashboard-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; min-height: auto; }
  .dashboard-hero-polished { padding: 24px; }
  .dashboard-hero-polished h1 { font-size: 2.1rem; }
  .dashboard-account-card { min-width: 0; width: 100%; }
  .dashboard-account-actions, .dashboard-metrics { grid-template-columns: 1fr; }
}

/* =====================================================================
   F2S — Design moderne 2026 (additions)
   Léger, sans dépendance, performant
   ===================================================================== */
:root {
  --accent: #22c55e;
  --warning: #f59e0b;
  --muted: #64748b;
  --bg-soft: #f6fafd;
  --shadow-sm: 0 6px 18px rgba(15,23,42,.06);
  --shadow-md: 0 14px 38px rgba(15,23,42,.08);
  --shadow-lg: 0 26px 60px rgba(15,23,42,.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Utilitaires */
.section-soft { background: var(--bg-soft); }
.section-dark { background: linear-gradient(135deg,#0c1226 0%, #131b3f 60%, #1f2a5c 100%); color: #e6edf7; }
.section-tight { padding: 56px 0; }
.section-title { text-align: center; margin: 0 auto 14px; max-width: 760px; }
.section-title .eyebrow { background: linear-gradient(135deg,var(--secondary),var(--primary)); color:#fff; padding:6px 14px; border-radius:999px; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; font-weight:800; }
.section-title h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; margin: 14px 0 10px; color: var(--secondary); }
.section-title p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0; }
.section-dark .section-title h2 { color:#fff; }
.section-dark .section-title p { color:#cbd5e1; }
.grid-2 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.text-center { text-align:center; }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:48px}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}

/* Hero moderne avec blob + grid */
.hero-modern { position:relative; overflow:hidden; background: linear-gradient(135deg,#0c1226 0%, #1a2453 55%, #2DAAE1 130%); color:#fff; padding: 96px 0 88px; }
.hero-modern::before { content:""; position:absolute; inset:auto -200px -260px auto; width:620px; height:620px; border-radius:50%; background: radial-gradient(circle at 30% 30%, rgba(45,170,225,.55), transparent 60%); filter: blur(20px); }
.hero-modern::after { content:""; position:absolute; top:-220px; left:-180px; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle at 60% 60%, rgba(34,197,94,.28), transparent 65%); filter: blur(30px); }
.hero-modern .hero-grid { position:relative; z-index:1; grid-template-columns: 1.15fr .85fr; }
.hero-modern .eyebrow { background: rgba(255,255,255,.14); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,.18); font-weight:800; letter-spacing:.08em; text-transform:uppercase; font-size:.78rem; }
.hero-modern h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height:1.05; }
.hero-modern h1 .grad { background: linear-gradient(135deg,#22c55e,#2DAAE1 60%,#fff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-modern .lead { font-size:1.12rem; line-height:1.7; color:#dbeafe; max-width:560px; margin-top:12px; }
.hero-trust { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; color:#cbd5e1; font-size:.92rem; }
.hero-trust span { display:inline-flex; align-items:center; gap:8px; }
.hero-trust span::before { content:"✓"; display:grid; place-items:center; width:22px; height:22px; border-radius:50%; background:rgba(34,197,94,.18); color:#22c55e; font-size:.85rem; font-weight:900; }
.hero-visual-card { position:relative; padding:18px; background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); }
.hero-visual-card img { border-radius: var(--radius-md); }
.hero-visual-badge { position:absolute; bottom:-18px; left:-18px; background:#fff; color:var(--dark); padding:14px 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display:grid; gap:2px; min-width:200px; }
.hero-visual-badge strong { color: var(--secondary); }
.hero-visual-badge small { color: var(--muted); font-size:.82rem; }

/* Cards modernes */
.card-modern { position:relative; overflow:hidden; padding:28px; background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.card-modern:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(45,170,225,.5); }
.card-modern .icon { width:54px; height:54px; border-radius:14px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(45,170,225,.12), rgba(32,41,83,.08)); color: var(--secondary); margin-bottom:16px; font-size:1.5rem; }
.card-modern h3 { margin:0 0 8px; color: var(--secondary); font-size:1.18rem; }
.card-modern p { margin:0; color: var(--muted); line-height:1.65; }
.card-modern .more { display:inline-block; margin-top:14px; color: var(--primary); font-weight:800; }
.card-modern::after { content:""; position:absolute; right:-40px; top:-40px; width:120px; height:120px; border-radius:50%; background: radial-gradient(circle, rgba(45,170,225,.12), transparent 70%); opacity:0; transition: opacity .4s var(--ease); }
.card-modern:hover::after { opacity:1; }

/* Process / timeline */
.process { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; counter-reset: step; }
.process-item { position:relative; padding:24px 22px 22px; background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.process-item::before { counter-increment: step; content: counter(step, decimal-leading-zero); position:absolute; top:-18px; left:22px; background: linear-gradient(135deg, var(--secondary), var(--primary)); color:#fff; padding:6px 12px; border-radius:999px; font-weight:900; font-size:.85rem; box-shadow: var(--shadow-sm); }
.process-item h4 { margin: 14px 0 8px; color: var(--secondary); font-size:1.05rem; }
.process-item p { margin:0; color: var(--muted); line-height:1.6; font-size:.95rem; }

/* Stats */
.stats { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.stat { padding: 28px 22px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); text-align:center; backdrop-filter: blur(6px); }
.stat .num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight:900; line-height:1; background: linear-gradient(135deg,#22c55e,#2DAAE1); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .lbl { display:block; margin-top:10px; color:#cbd5e1; font-weight:700; letter-spacing:.04em; }

/* Pricing */
.pricing { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:24px; align-items: stretch; max-width: 980px; margin: 24px auto 0; }
.pricing.three { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 1140px; }
.plan { position:relative; display:flex; flex-direction:column; padding: 32px 28px; background:#fff; border:1.5px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--primary); background: linear-gradient(180deg,#fff, #f3faff); box-shadow: 0 22px 56px rgba(45,170,225,.18); transform: scale(1.02); }
.plan.featured::before { content:"Recommandé"; position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: linear-gradient(135deg, var(--secondary), var(--primary)); color:#fff; padding:6px 16px; border-radius:999px; font-weight:800; font-size:.78rem; letter-spacing:.08em; }
.plan h3 { margin:0; color: var(--secondary); font-size:1.35rem; }
.plan .price { display:flex; align-items:baseline; gap:6px; margin: 16px 0 6px; }
.plan .price strong { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--secondary); font-weight: 900; line-height:1; }
.plan .price .cur { font-weight:800; color: var(--primary); font-size:1.1rem; }
.plan .price .per { color: var(--muted); font-size:.95rem; }
.plan .desc { color: var(--muted); margin: 0 0 18px; line-height:1.6; }
.plan ul { list-style:none; padding:0; margin:0 0 22px; display:grid; gap:10px; }
.plan ul li { position:relative; padding-left: 26px; color: #1e293b; line-height:1.55; }
.plan ul li::before { content:"✓"; position:absolute; left:0; top:0; width:18px; height:18px; display:grid; place-items:center; background: rgba(34,197,94,.14); color:#22c55e; border-radius:50%; font-weight:900; font-size:.72rem; }
.plan ul li.off { color:#94a3b8; }
.plan ul li.off::before { content:"×"; background: rgba(148,163,184,.16); color:#94a3b8; }
.plan .btn { margin-top: auto; width:100%; min-height:50px; }

/* Témoignages */
.testimonials { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.testimonial { position:relative; padding:26px 24px; background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.testimonial::before { content:"“"; position:absolute; top:-22px; left:18px; font-size: 4.5rem; font-family: Georgia, serif; color: var(--primary); line-height:1; opacity:.85; }
.testimonial p { color: #334155; line-height:1.7; margin: 0 0 18px; font-style: italic; }
.testimonial footer { display:flex; align-items:center; gap:12px; }
.testimonial .avatar { width:46px; height:46px; border-radius:50%; background: linear-gradient(135deg, var(--secondary), var(--primary)); color:#fff; display:grid; place-items:center; font-weight:900; }
.testimonial strong { color: var(--secondary); display:block; }
.testimonial small { color: var(--muted); }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; display:grid; gap:12px; }
.faq-item { background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); overflow:hidden; transition: box-shadow .3s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: rgba(45,170,225,.4); }
.faq-item summary { cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:14px; padding: 18px 22px; font-weight:800; color: var(--secondary); font-size:1.02rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; display:grid; place-items:center; width:30px; height:30px; border-radius:50%; background: rgba(45,170,225,.1); color: var(--primary); font-weight:900; transition: transform .3s var(--ease), background .3s var(--ease); }
.faq-item[open] summary::after { content:"−"; background: var(--primary); color:#fff; transform: rotate(180deg); }
.faq-item .answer { padding: 0 22px 20px; color: #475569; line-height: 1.7; }

/* CTA finale */
.cta-band { position:relative; overflow:hidden; padding: 64px 0; background: linear-gradient(135deg, var(--secondary), var(--primary)); color:#fff; border-radius: var(--radius-lg); margin: 60px auto; max-width: calc(1180px - 2px); }
.cta-band::before { content:""; position:absolute; right:-120px; top:-120px; width:380px; height:380px; border-radius:50%; background: rgba(255,255,255,.08); }
.cta-band .container { position:relative; z-index:1; display:grid; grid-template-columns: 1.4fr .6fr; gap:30px; align-items:center; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin:0 0 10px; }
.cta-band p { margin:0; color: #e2eaff; line-height:1.65; max-width:620px; }
.cta-band .actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
.cta-band .btn-dark { background:#05070c; }

/* Logos clients (bandeau) */
.logos-band { display:flex; flex-wrap:wrap; justify-content:center; gap:36px; padding: 28px 0; opacity:.85; }
.logos-band span { color: var(--muted); font-weight:900; letter-spacing:.08em; text-transform:uppercase; font-size:.9rem; padding: 8px 16px; border:1px dashed var(--border); border-radius: 10px; }

/* Reveal on scroll */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }
.reveal.delay-1 { transition-delay:.08s; }
.reveal.delay-2 { transition-delay:.16s; }
.reveal.delay-3 { transition-delay:.24s; }
.reveal.delay-4 { transition-delay:.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
}

/* Header scroll effect */
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(15,23,42,.08); backdrop-filter: blur(10px); background: rgba(255,255,255,.92); }

/* Pricing toggle */
.pricing-toggle { display:inline-flex; gap:6px; padding:6px; background:#fff; border:1px solid var(--border); border-radius:999px; margin: 0 auto 28px; box-shadow: var(--shadow-sm); }
.pricing-toggle button { border:0; background:transparent; padding:10px 22px; border-radius:999px; font-weight:800; color: var(--muted); cursor:pointer; transition: all .25s var(--ease); }
.pricing-toggle button.is-active { background: linear-gradient(135deg, var(--secondary), var(--primary)); color:#fff; box-shadow: var(--shadow-sm); }

/* Responsive complémentaire */
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4, .process, .stats, .testimonials, .pricing, .pricing.three { grid-template-columns: 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content:flex-start; }
  .hero-modern { padding: 64px 0 80px; }
  .hero-visual-badge { left: 14px; bottom: -14px; }
}
@media (max-width: 640px) {
  .section-tight, .section { padding: 48px 0; }
  .plan.featured { transform: none; }
  .cta-band { margin: 30px auto; border-radius: var(--radius-md); padding: 40px 0; }
}
