/* =====================================================================
   UDCShare — style.css
   Design system UNIFIÉ avec dashboard.ejs
   Mobile-first · Zero duplication · Variables partagées
   ===================================================================== */

/* ── Inter — Police locale ── */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* =====================================================================
   DESIGN TOKENS — identiques dashboard.ejs
   ===================================================================== */
:root {
  /* Couleurs principales */
  --red:    #ff3366;
  --green:  #00cc66;
  --yellow: #ffcc00;
  --blue:   #3b82f6;
  --purple: #a855f7;
  --orange: #f97316;

  /* Alias sémantiques (compatibilité ancienne base) */
  --primary-color:  var(--red);
  --primary-hover:  #e62e5c;
  --success-color:  var(--green);

  /* Surfaces & bordures */
  --bg:     #08090d;
  --card:   rgba(15,17,26,0.92);
  --border: rgba(255,255,255,0.08);
  --muted:  rgba(255,255,255,0.4);

  /* Anciens alias (compatibilité) */
  --bg-color:     var(--bg);
  --card-bg:      var(--card);
  --border-color: var(--border);
  --text-main:    #ffffff;
  --text-muted:   rgba(255,255,255,0.4);
}

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

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

/* ── Base ── */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px; /* navbar fixe */
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* ── Animation fond ── */
.background-animation {
  position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 50%, #1a0a1a 0%, var(--bg) 100%);
}
.background-animation::before,
.background-animation::after {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,51,102,0.07) 0%, transparent 60%);
  animation: bgFloat 20s infinite ease-in-out alternate;
}
.background-animation::after {
  background: radial-gradient(circle at 50% 50%, rgba(51,102,255,0.07) 0%, transparent 60%);
  animation-delay: -10s; right: -10vw; top: 20vh;
}
@keyframes bgFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-10vw,10vh) scale(1.2); }
}

/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,11,17,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.navbar-brand svg { width: 110px; height: 32px; flex-shrink: 0; }

/* Mobile-first : liens & actions cachés */
.navbar-links  { display: none; align-items: center; gap: 4px; list-style: none; }
.navbar-actions{ display: none; align-items: center; gap: 10px; flex-shrink: 0; }

.navbar-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.navbar-links a:hover      { color: #fff; background: rgba(255,255,255,0.06); }
.navbar-links a.active     { color: var(--red); background: rgba(255,51,102,0.1); }
.nav-admin-link            { color: var(--yellow) !important; }
.nav-admin-link:hover      { background: rgba(255,204,0,0.1) !important; }

.navbar-links .badge-live,
.navbar-links .badge-new {
  font-size: 10px; font-weight: 700; padding: 2px 6px;
  border-radius: 20px; letter-spacing: 0.5px;
}
.navbar-links .badge-live { background: var(--yellow); color: #000; }
.navbar-links .badge-new  { background: var(--red); color: #fff; }

.btn-nav-login {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75); text-decoration: none;
  border: 1px solid var(--border); transition: all 0.2s;
}
.btn-nav-login:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

.btn-nav-primary {
  padding: 8px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: #fff; text-decoration: none; background: var(--red); transition: opacity 0.2s;
}
.btn-nav-primary:hover { opacity: 0.85; }

.navbar-user {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
}
.navbar-user .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0099ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #000; flex-shrink: 0;
}
.navbar-user .user-info  { display: flex; flex-direction: column; }
.navbar-user .user-name  { font-size: 13px; font-weight: 600; color: #fff; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.navbar-user .user-email { font-size: 11px; color: var(--muted); max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.navbar-user .user-plan  { font-size: 10px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Hamburger */
.navbar-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.navbar-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.3s;
}

/* Menu mobile */
.navbar-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: rgba(10,11,17,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px; flex-direction: column; gap: 4px;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s;
}
.navbar-mobile a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-actions { display: flex; gap: 10px; margin-top: 8px; }
.mobile-actions a { flex: 1; justify-content: center; font-size: 14px; }

/* Desktop */
@media (min-width: 900px) {
  .navbar          { padding: 0 40px; }
  .navbar-brand svg{ width: 130px; height: 36px; }
  .navbar-links    { display: flex; }
  .navbar-actions  { display: flex; }
  .navbar-hamburger{ display: none; }
}

/* =====================================================================
   MAIN CONTENT & UPLOAD CARD
   ===================================================================== */
.main-content { flex: 1; padding-top: 32px; }

.upload-card {
  width: 100%; margin: 0 auto;
  padding: 16px; box-sizing: border-box;
}
@media (min-width: 600px) { .upload-card { padding: 24px; max-width: 600px; } }
@media (min-width: 900px) { .upload-card { max-width: 800px; } }
@media (max-width: 480px) { .upload-card { padding: 12px; } }

/* ── TABS ── */
.tabs {
  display: flex; gap: 0; margin-bottom: 24px;
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 4px;
}
.tab-btn {
  flex: 1; padding: 10px; border: none; border-radius: 9px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.5);
  transition: all 0.2s; font-family: inherit;
}
.tab-btn.active { background: var(--red); color: #fff; }

/* ── Logo section ── */
.logo-section {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.logo-section svg { width: 50px; height: 50px; flex-shrink: 0; }
.logo-section h1 { font-size: 24px; color: #fff; margin: 0; }
.logo-section h1 span { color: var(--red); font-size: 16px; font-weight: 400; }
.live-link {
  font-size: 12px; color: var(--yellow); text-decoration: none;
  border: 1px solid var(--yellow); padding: 4px 12px;
  border-radius: 20px; display: inline-block; margin-top: 8px; font-weight: 700;
}

/* ── Drop zone ── */
.drop-zone {
  border: 2px dashed var(--border); border-radius: 16px;
  padding: 40px 20px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: rgba(255,255,255,0.02);
  margin-bottom: 24px;
}
.drop-zone:hover,
.drop-zone.drag-over,
.drop-zone.dragover {
  border-color: var(--red); background: rgba(255,51,102,0.05);
}
.upload-icon { width: 48px; height: 48px; color: var(--muted); }
.drop-text   { font-size: 16px; margin-top: 16px; color: #fff; font-weight: 500; }
.drop-subtext{ font-size: 13px; color: var(--muted); margin-top: 8px; }

@media (max-width: 480px) {
  .drop-zone   { padding: 28px 14px; }
  .drop-text   { font-size: 14px; }
}

/* ── Fichiers sélectionnés ── */
.selected-files { margin-top: 20px; max-height: 150px; overflow-y: auto; }
.file-item {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.file-info { display: flex; align-items: center; gap: 12px; overflow: hidden; }
.file-name { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.file-size { font-size: 12px; color: var(--muted); }
.remove-file { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; padding: 0 4px; }
.remove-file:hover { color: var(--red); }

/* ── Upload form ── */
.upload-form, #panel-send {
  width: 100%; box-sizing: border-box; overflow: hidden;
  contain: layout style;
}
#panel-send { min-height: 420px; }
.upload-form { margin-top: 24px; }

/* ── Formulaire inputs ── */
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; display: block; margin-bottom: 5px; }
.form-group input,
.form-group textarea,
input[type="email"],
input[type="text"],
input[type="password"],
input[type="number"],
textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; color: #fff;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s; box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
input:focus, textarea:focus { border-color: var(--red); }
input::placeholder,
textarea::placeholder { color: var(--muted); }
textarea { resize: none; }

/* ── Toggle options ── */
.toggle-options-btn {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 14px; text-decoration: underline; margin-bottom: 16px; font-family: inherit;
}

/* ── Pro options panel ── */
.pro-options-panel {
  display: none; padding: 16px;
  background: rgba(255,255,255,0.02); border-radius: 12px;
  margin-bottom: 16px; border: 1px solid var(--border);
  width: 100%; box-sizing: border-box; overflow: hidden;
}
.pro-options-panel input,
.pro-options-panel textarea { width: 100%; box-sizing: border-box; max-width: 100%; }
.paywall-row { display: flex; gap: 8px; flex-wrap: wrap; }
.paywall-row > div { flex: 1; min-width: 120px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; }

/* ── Boutons ── */
.btn-primary {
  width: 100%; padding: 14px;
  background: var(--red); border: none; border-radius: 10px;
  color: #fff; font-weight: 700; cursor: pointer;
  font-size: 16px; font-family: inherit; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-sizing: border-box; text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,51,102,0.25); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 10px; font-family: inherit;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6);
  border: 1px solid var(--border); cursor: pointer; font-weight: 700;
  font-size: 12px; text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn-copy {
  padding: 12px 20px; background: rgba(255,255,255,0.08);
  border: 1px solid var(--border); color: #fff;
  border-radius: 10px; cursor: pointer; font-weight: 600;
  font-size: 14px; font-family: inherit; transition: all 0.2s; white-space: nowrap;
}
.btn-copy:hover { background: rgba(255,255,255,0.15); }

/* ── Progress ── */
.progress-container { display: none; margin-top: 24px; text-align: center; padding: 20px 0; }
.progress-bar {
  width: 100%; height: 8px;
  background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; margin-bottom: 12px;
}
.progress-fill { height: 100%; width: 0%; background: var(--red); transition: width 0.3s ease; border-radius: 4px; }
.progress-text { text-align: center; margin-top: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }

/* ── Success ── */
.success-container { display: none; margin-top: 24px; text-align: center; padding: 20px 0; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(0,204,102,0.12); color: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 24px; border: 2px solid rgba(0,204,102,0.25);
}

/* ── Link box ── */
.link-box {
  display: flex; gap: 8px; margin: 20px 0; flex-wrap: wrap;
}
.link-box input {
  flex: 1; padding: 12px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; color: #fff; font-size: 13px;
  min-width: 0; outline: none; box-sizing: border-box;
}
@media (max-width: 480px) { .link-box { flex-direction: column; } .btn-copy { width: 100%; } }

/* ── Panel Recevoir ── */
.panel-receive { display: none; text-align: center; padding: 20px 0; }

/* ── Guest banner ── */
.guest-banner {
  display: none; align-items: center; gap: 10px;
  background: rgba(255,51,102,0.07); border: 1px solid rgba(255,51,102,0.18);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 18px;
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4;
}
.guest-banner a { color: #ff6688; font-weight: 600; text-decoration: underline; }
body.theme-guest .guest-banner { display: flex; }

/* ── Guest lock overlay ── */
.guest-lock-overlay {
  position: absolute; inset: 0;
  background: rgba(8,9,13,0.78); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; backdrop-filter: blur(3px);
}
.guest-lock-badge {
  background: rgba(15,17,26,0.95); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 18px; font-size: 13px;
  font-weight: 600; color: rgba(255,255,255,0.65); text-align: center; line-height: 1.5;
}
.guest-size-warning {
  background: rgba(255,51,102,0.08); border: 1px solid rgba(255,51,102,0.2);
  border-radius: 8px; padding: 10px 14px; font-size: 13px;
  color: #fca5a5; margin-top: 10px;
}
.guest-size-warning a { color: #f87171; font-weight: 700; }

/* ── Thèmes plan ── */
body.theme-pro {
  --red: #a855f7;
  --primary-color: #a855f7;
  --border: rgba(168,85,247,0.2);
}
body.theme-pro .drop-zone { border-color: rgba(168,85,247,0.3); background: rgba(168,85,247,0.03); }
body.theme-pro .btn-primary { background: linear-gradient(135deg, #a855f7, #7c3aed); }

/* =====================================================================
   QUOTA / DRIVE CARDS (index)
   ===================================================================== */
.quota-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 8px; border-left: 3px solid;
  margin-bottom: 14px; font-size: 0.88rem;
}
.quota-banner.warn-75      { background: rgba(255,204,0,0.07);   border-color: var(--yellow); color: var(--yellow); }
.quota-banner.warn-90      { background: rgba(255,51,102,0.08);  border-color: var(--red);    color: var(--red); animation: pulse 2s infinite; }
.quota-banner.warn-monthly { background: rgba(59,130,246,0.08);  border-color: var(--blue);   color: var(--blue); }

.price-cdf  { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1.1; }
.price-usd  { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.quota-ring { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.quota-ring circle.track { stroke: rgba(255,255,255,0.07); fill: none; }
.quota-ring circle.fill  { fill: none; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }
.quota-ring[data-warn="75"] circle.fill { stroke: var(--yellow); }
.quota-ring[data-warn="90"] circle.fill { stroke: var(--red); }
.quota-ring:not([data-warn]) circle.fill { stroke: var(--green); }

.upgrade-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,204,102,0.07); border: 1px solid rgba(0,204,102,0.2);
  border-radius: 8px; padding: 8px 12px; font-size: 0.82rem; cursor: pointer; transition: background 0.2s;
}
.upgrade-chip:hover { background: rgba(0,204,102,0.12); }
.upgrade-chip .chip-cta { color: var(--green); font-weight: 600; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.65; } }

/* =====================================================================
   SEO CONTENT — Mobile-first
   ===================================================================== */
.seo-content {
  width: 100%; max-width: 860px; margin: 0 auto;
  padding: 48px 16px 64px; color: #fff;
  content-visibility: auto; contain-intrinsic-size: 0 800px;
}

/* ── Intro ── */
.seo-intro {
  font-size: 0.97rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 48px; padding: 20px;
  border-left: 3px solid var(--red);
  background: rgba(255,51,102,0.04); border-radius: 0 12px 12px 0;
}
.seo-intro a { color: var(--red); text-decoration: none; font-weight: 600; }
.seo-intro a:hover { text-decoration: underline; }

/* ── Blocs génériques ── */
.seo-block { margin-bottom: 52px; scroll-margin-top: 80px; }
.seo-block h2 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.35; letter-spacing: -0.3px; }
.seo-block p  { font-size: 0.93rem; line-height: 1.75; color: #9a9da3; margin-bottom: 12px; }
.seo-block p:last-child { margin-bottom: 0; }
.seo-block a  { color: var(--red); text-decoration: none; font-weight: 500; }
.seo-block a:hover { text-decoration: underline; }
.seo-content p, .seo-content li { color: #9a9da3; }

/* ── Note ── */
.seo-note {
  font-size: 0.85rem !important; color: rgba(255,255,255,0.65) !important;
  padding: 10px 14px; background: rgba(255,255,255,0.03);
  border-radius: 8px; border: 1px solid var(--border); margin-top: 16px !important;
}

/* ── Liste ── */
.seo-list { list-style: none; padding: 0; margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.seo-list li { font-size: 0.91rem; color: #9a9da3; line-height: 1.6; padding-left: 20px; position: relative; }
.seo-list li::before { content: '›'; position: absolute; left: 4px; color: var(--red); font-weight: 700; font-size: 1rem; }
.seo-list li strong { color: rgba(255,255,255,0.85); }
.seo-list li a { color: var(--red); text-decoration: none; }
.seo-list li a:hover { text-decoration: underline; }

/* ── Steps ── */
.seo-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.seo-step {
  display: flex; gap: 16px; align-items: flex-start; padding: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; transition: border-color 0.2s;
}
.seo-step:hover { border-color: rgba(255,51,102,0.25); }
.seo-step-num { font-size: 1.5rem; font-weight: 800; color: var(--red); line-height: 1; flex-shrink: 0; min-width: 36px; opacity: 0.7; }
.seo-step strong { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.seo-step p { font-size: 0.87rem; color: #9a9da3; line-height: 1.6; margin-bottom: 0 !important; }

/* ── Plans grid ── */
.seo-plans-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
.seo-plan-card {
  padding: 18px 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 14px; transition: border-color 0.2s, background 0.2s;
}
.seo-plan-card:hover { border-color: rgba(255,51,102,0.3); background: rgba(255,51,102,0.04); }
.seo-plan-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 3px 9px; border-radius: 20px; margin-bottom: 10px;
}
.seo-plan-badge.free       { background: rgba(160,160,160,0.15); color: rgba(255,255,255,0.5); }
.seo-plan-badge.essentials { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.seo-plan-badge.pro        { background: rgba(0,204,102,0.12);   color: var(--green); }
.seo-plan-badge.business   { background: rgba(249,115,22,0.15);  color: var(--orange); }
.seo-plan-card h3 { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.seo-plan-card h3 a { color: inherit; text-decoration: none; }
.seo-plan-card h3 a:hover { color: var(--red); }
.seo-plan-card p  { font-size: 0.85rem; color: #9a9da3; line-height: 1.6; margin-bottom: 0 !important; }

/* ── Use cases ── */
.seo-use-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
.seo-use-card {
  padding: 18px 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 14px;
  display: flex; flex-direction: column; gap: 8px; transition: border-color 0.2s;
}
.seo-use-card:hover { border-color: rgba(255,51,102,0.25); }
.seo-use-icon { font-size: 1.6rem; line-height: 1; }
.seo-use-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0; }
.seo-use-card p  { font-size: 0.85rem; color: #9a9da3; line-height: 1.65; margin-bottom: 0 !important; }

/* ── Advantages ── */
.seo-advantages { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
.seo-adv {
  padding: 18px 16px; background: rgba(255,255,255,0.025);
  border: 1px solid var(--border); border-radius: 12px;
  border-left: 3px solid rgba(255,51,102,0.4); transition: border-color 0.2s, background 0.2s;
}
.seo-adv:hover { border-color: rgba(255,51,102,0.5); background: rgba(255,51,102,0.03); border-left-color: var(--red); }
.seo-adv h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.seo-adv p  { font-size: 0.87rem; color: #9a9da3; line-height: 1.7; margin-bottom: 0 !important; }
.seo-adv a  { color: var(--red); text-decoration: none; }
.seo-adv a:hover { text-decoration: underline; }

/* ── FAQ ── */
.seo-faq { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.seo-faq-item {
  padding: 18px 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s;
}
.seo-faq-item:hover { border-color: rgba(255,51,102,0.2); }
.seo-faq-item h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.seo-faq-item p  { font-size: 0.88rem; color: #9a9da3; line-height: 1.7; margin-bottom: 0 !important; }
.seo-faq-item a  { color: var(--red); text-decoration: none; }
.seo-faq-item a:hover { text-decoration: underline; }

/* SEO — Tablet */
@media (min-width: 600px) {
  .seo-content        { padding: 56px 28px 72px; }
  .seo-block h2       { font-size: 1.4rem; }
  .seo-plans-grid     { grid-template-columns: 1fr 1fr; }
  .seo-use-grid       { grid-template-columns: 1fr 1fr; }
  .seo-advantages     { grid-template-columns: 1fr 1fr; }
  .seo-steps          { gap: 12px; }
}
/* SEO — Desktop */
@media (min-width: 900px) {
  .seo-content        { padding: 72px 40px 96px; }
  .seo-intro          { font-size: 1rem; padding: 24px 28px; }
  .seo-block h2       { font-size: 1.55rem; }
  .seo-block p        { font-size: 0.96rem; }
  .seo-plans-grid     { grid-template-columns: repeat(4,1fr); gap: 14px; }
  .seo-use-grid       { grid-template-columns: repeat(3,1fr); gap: 14px; }
  .seo-advantages     { gap: 16px; }
  .seo-step           { padding: 20px; gap: 20px; }
  .seo-faq-item       { padding: 22px 20px; }
}

/* =====================================================================
   SEO RESOURCES SECTION
   ===================================================================== */
.seo-resources-section {
  background: rgba(255,255,255,0.02); border-top: 1px solid var(--border);
  padding: 48px 16px 56px; width: 100%;
}
.seo-resources-container {
  max-width: 860px; margin: 0 auto;
}
.seo-resources-section h2 {
  font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.seo-resources-section > .seo-resources-container > p {
  font-size: 0.93rem; color: #9a9da3; margin-bottom: 28px;
}
.seo-resources-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.seo-resource-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.seo-resource-card:hover { border-color: rgba(255,51,102,0.3); background: rgba(255,51,102,0.04); }
.seo-resource-icon { font-size: 1.4rem; line-height: 1; }
.seo-resource-card h3 { font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0; }
.seo-resource-card p  { font-size: 0.82rem; color: #9a9da3; line-height: 1.5; margin: 0; }
@media (min-width: 600px) { .seo-resources-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .seo-resources-grid { grid-template-columns: repeat(4,1fr); } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: rgba(10,11,17,0.98); border-top: 1px solid var(--border);
  margin-top: 60px; padding: 40px 0 20px; width: 100%;
  content-visibility: auto; contain-intrinsic-size: 0 300px;
}
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr; gap: 30px;
}
@media (min-width: 768px) { .footer-container { padding: 0 40px; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; } }

.footer-brand    { display: flex; flex-direction: column; gap: 12px; }
.footer-logo     { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.footer-logo span{ font-size: 18px; font-weight: 700; color: #fff; }
.footer-logo span em { font-style: normal; color: var(--red); }
.footer-description { color: var(--muted); font-size: 13px; line-height: 1.6; }

.footer-links          { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4       { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.footer-links a        { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover  { color: var(--red); }

.footer-bottom {
  max-width: 1200px; margin: 30px auto 0; padding: 24px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #9a9da3; }
.footer-badges   { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge    { font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 600; background: rgba(255,255,255,0.05); color: #b8babf; border: 1px solid var(--border); }

@media (max-width: 600px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) { .footer-container { grid-template-columns: 1fr; gap: 24px; } }

/* =====================================================================
   COOKIE CONSENT
   ===================================================================== */
.cookie-consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0c0e18; border-top: 2px solid #05855c;
  padding: 1.25rem; z-index: 10001;
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  will-change: transform; contain: layout style;
}
.cookie-consent-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-banner-text { flex: 2; min-width: 200px; }
.cookie-banner-text p { margin: 0; color: #e2e8f0; font-size: 0.85rem; line-height: 1.5; }
.cookie-banner-text a { color: #00df9a; text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-btn-ghost   { padding: 0.5rem 1rem; background: transparent; border: 1px solid #334155; border-radius: 8px; color: #cbd5e1; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.cookie-btn-ghost:hover { border-color: #05855c; color: #05855c; }
.cookie-btn-refuse  { padding: 0.5rem 1rem; background: rgba(255,51,102,0.12); border: 1px solid rgba(255,51,102,0.3); border-radius: 8px; color: #fca5a5; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.cookie-btn-refuse:hover { background: rgba(255,51,102,0.22); }
.cookie-btn-primary { padding: 0.5rem 1.5rem; background: #05855c; border: none; border-radius: 8px; color: #fff; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s; font-family: inherit; }
.cookie-btn-primary:hover { opacity: 0.85; }

/* Cookie modal */
.cookie-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 10002; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.cookie-modal-content { background: #0c0e18; border: 1px solid var(--border); border-radius: 20px; max-width: 500px; width: 90%; padding: 1.5rem; margin: 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.cookie-modal-content h3 { color: #05855c; margin-top: 0; margin-bottom: 1rem; font-size: 1.3rem; }
.cookie-option { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cookie-option:last-child { border-bottom: none; }
.cookie-option-text strong { color: #fff; font-size: 0.9rem; }
.cookie-option-text small  { color: #9a9da3; font-size: 0.75rem; display: block; margin-top: 4px; }
.cookie-option-badge       { color: #05855c; font-size: 0.75rem; font-weight: 600; }
.cookie-option input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: #05855c; }
.cookie-modal-buttons { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1.5rem; }

/* =====================================================================
   MODALS COMMUNS
   ===================================================================== */
@keyframes modalPop {
  from { transform: scale(0.92) translateY(12px); opacity: 0; }
  to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

/* ── OTP Modal ── */
.otp-modal {
  display: flex; position: fixed; inset: 0;
  background: rgba(8,9,13,0.82); backdrop-filter: blur(12px);
  z-index: 99999; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.otp-modal.active { opacity: 1; pointer-events: auto; }
.otp-modal-content {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; max-width: 400px; width: 100%;
  position: relative; box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  animation: modalPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.otp-modal-icon { width: 52px; height: 52px; background: rgba(255,51,102,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.otp-modal-title { font-size: 18px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 6px; }
.otp-modal-subtitle { font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 24px; line-height: 1.5; }
.otp-modal-subtitle strong { color: rgba(255,255,255,0.8); }
.otp-modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.05); border: none; width: 28px; height: 28px; border-radius: 50%; color: var(--muted); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.otp-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.otp-input-group { display: flex; gap: 8px; margin-bottom: 12px; }
.otp-input-group input[type="text"] { flex: 1; padding: 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 10px; color: #fff; font-size: 22px; font-weight: 700; letter-spacing: 6px; text-align: center; outline: none; font-family: 'Inter', monospace; transition: border-color 0.2s; }
.otp-input-group input[type="text"]:focus { border-color: var(--red); }
.otp-submit-btn { padding: 13px 20px; background: var(--red); border: none; border-radius: 10px; color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: inherit; transition: background 0.2s; }
.otp-submit-btn:hover { background: var(--primary-hover); }
.otp-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.otp-error    { color: #f87171; font-size: 12px; margin-bottom: 10px; min-height: 16px; text-align: center; }
.otp-countdown{ font-size: 12px; color: var(--muted); text-align: center; margin-bottom: 14px; }
.otp-resend-row { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--muted); }
.otp-resend-btn { background: none; border: none; color: #ff6688; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: underline; padding: 0; }
.otp-resend-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Auth Modal ── */
.auth-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(8,9,13,0.6); backdrop-filter: blur(12px);
  z-index: 10005; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity 0.3s ease;
}
.auth-modal.active { display: flex; opacity: 1; }
.auth-modal-content {
  background: var(--card); border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-radius: 24px; max-width: 440px; width: 100%; padding: 32px;
  transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); position: relative;
}
.auth-modal.show .auth-modal-content { transform: translateY(0); }
.auth-modal-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.05); border: none; width: 32px; height: 32px; border-radius: 50%; color: var(--muted); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.auth-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.auth-title    { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; text-align: center; }
.auth-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 24px; text-align: center; line-height: 1.4; }
.auth-tabs { display: flex; gap: 4px; background: rgba(0,0,0,0.3); border: 1px solid var(--border); padding: 4px; border-radius: 12px; margin-bottom: 24px; }
.auth-tab-btn { flex: 1; padding: 10px; background: transparent; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.auth-tab-btn.active { background: var(--red); color: #fff; }
.auth-form-panel { display: none; }
.auth-form-panel.active { display: block; }
.auth-error { background: rgba(255,51,102,0.1); border: 1px solid rgba(255,51,102,0.2); color: #ff5577; padding: 12px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; line-height: 1.4; }
.google-auth-btn { width: 100%; padding: 12px; background: #fff; color: #111; border: none; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; transition: background 0.2s; font-family: inherit; text-decoration: none; }
.google-auth-btn:hover { background: #f3f4f6; }
.auth-divider { display: flex; align-items: center; text-align: center; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border); }
.auth-divider:not(:empty)::before { margin-right: 12px; }
.auth-divider:not(:empty)::after  { margin-left: 12px; }
@media (max-width: 480px) { .auth-modal-content { padding: 24px 20px; border-radius: 20px; } .auth-title { font-size: 18px; } }

/* ── Pricing Modal (post-upload) ── */
.pricing-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(8,9,13,0.82); backdrop-filter: blur(8px);
  z-index: 10020; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; transition: opacity 0.25s ease;
}
.pricing-modal.active { display: flex; opacity: 1; }
.pricing-modal-content {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 18px 16px; width: 100%;
  max-width: 480px; max-height: 92vh; overflow-y: auto; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.pricing-modal-header { text-align: center; margin-bottom: 16px; }
.pricing-modal-header .pm-emoji { font-size: 28px; display: block; margin-bottom: 6px; }
.pricing-modal-header h2 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.pricing-modal-header p  { font-size: 12px; color: var(--muted); line-height: 1.4; }
.pm-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
@media (max-width: 400px) { .pm-plans { grid-template-columns: 1fr; } }
.pm-plan { border: 1px solid var(--border); border-radius: 14px; padding: 18px 16px; position: relative; }
.pm-plan.pm-free { background: rgba(255,255,255,0.03); }
.pm-plan.pm-pro  { background: linear-gradient(135deg,rgba(168,85,247,0.1),rgba(124,58,237,0.05)); border-color: rgba(168,85,247,0.3); }
.pm-plan-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 8px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.pm-free .pm-plan-badge { background: rgba(255,255,255,0.08); color: var(--muted); }
.pm-pro  .pm-plan-badge { background: rgba(168,85,247,0.2);  color: #c084fc; }
.pm-plan h3      { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pm-plan .pm-price { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.pm-plan ul { list-style: none; padding: 0; margin: 0; }
.pm-plan ul li { font-size: 12px; color: rgba(255,255,255,0.6); padding: 3px 0; display: flex; align-items: center; gap: 6px; }
.pm-plan ul li .pm-check { color: var(--green); font-weight: 700; }
.pm-plan ul li .pm-lock  { color: var(--muted); }
.pm-plan .pm-cta { display: block; width: 100%; margin-top: 14px; padding: 10px; border: none; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; font-family: inherit; transition: opacity 0.2s; }
.pm-free .pm-cta { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid var(--border); }
.pm-pro  .pm-cta { background: linear-gradient(135deg,#a855f7,#7c3aed); color: #fff; }
.pm-cta:hover { opacity: 0.85; }
.pm-footer { text-align: center; font-size: 12px; color: var(--muted); }
.pm-footer a { color: rgba(255,255,255,0.5); text-decoration: underline; margin-left: 4px; }
.pm-footer a:hover { color: #fff; }
.pricing-modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.05); border: none; width: 28px; height: 28px; border-radius: 50%; color: var(--muted); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.pricing-modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Guest Settings Modal ── */
.gs-modal { display: none; position: fixed; inset: 0; background: rgba(8,9,13,0.78); backdrop-filter: blur(10px); z-index: 10030; align-items: center; justify-content: center; padding: 16px; opacity: 0; transition: opacity 0.25s ease; }
.gs-modal.active { display: flex; opacity: 1; }
.gs-modal-content { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px 24px; max-width: 440px; width: 100%; position: relative; box-shadow: 0 24px 48px rgba(0,0,0,0.6); animation: modalPop 0.3s cubic-bezier(0.34,1.56,0.64,1); max-height: 90vh; overflow-y: auto; }
.gs-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.05); border: none; width: 28px; height: 28px; border-radius: 50%; color: var(--muted); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.gs-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.gs-title    { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.gs-subtitle { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.gs-quota-bar-wrap  { background: rgba(255,255,255,0.06); border-radius: 8px; height: 8px; overflow: hidden; margin-bottom: 6px; }
.gs-quota-bar-fill  { height: 100%; border-radius: 8px; background: linear-gradient(90deg,var(--red),#ff6688); transition: width 0.4s ease; }
.gs-quota-label     { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 20px; }
.gs-links-title     { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.gs-link-item       { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.gs-link-info       { flex: 1; min-width: 0; }
.gs-link-url        { font-size: 12px; color: #ff6688; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-decoration: none; display: block; margin-bottom: 4px; }
.gs-link-url:hover  { text-decoration: underline; }
.gs-link-meta       { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.gs-link-copy       { background: rgba(255,51,102,0.1); border: 1px solid rgba(255,51,102,0.2); color: #ff6688; border-radius: 6px; padding: 4px 8px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; transition: background 0.2s; }
.gs-link-copy:hover { background: rgba(255,51,102,0.2); }
.gs-empty           { text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); padding: 20px 0; }
.gs-error           { color: #f87171; font-size: 12px; margin-bottom: 8px; text-align: center; min-height: 16px; }
.gs-otp-gate        { text-align: center; }
.gs-otp-gate p      { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.5; }
.gs-otp-email-row   { display: flex; gap: 8px; margin-bottom: 12px; }
.gs-otp-email-row input { flex: 1; padding: 10px 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-size: 13px; outline: none; font-family: inherit; }
.gs-otp-email-row input:focus { border-color: var(--red); }
.gs-otp-send-btn    { padding: 10px 16px; background: var(--red); border: none; border-radius: 8px; color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; transition: background 0.2s; }
.gs-otp-send-btn:hover     { background: var(--primary-hover); }
.gs-otp-send-btn:disabled  { opacity: 0.5; cursor: not-allowed; }
.gs-otp-code-row    { display: flex; gap: 8px; margin-bottom: 8px; }
.gs-otp-code-row input { flex: 1; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-size: 20px; font-weight: 700; letter-spacing: 6px; text-align: center; outline: none; font-family: 'Inter', monospace; }
.gs-otp-code-row input:focus { border-color: var(--red); }

/* =====================================================================
   BADGES — identiques dashboard
   ===================================================================== */
.badge { padding: 3px 9px; border-radius: 20px; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.badge-free      { background: rgba(255,255,255,0.06); color: var(--muted); }
.badge-essentiel { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.badge-pro       { background: rgba(0,204,102,0.12);   color: var(--green); }
.badge-business  { background: rgba(249,115,22,0.15);  color: var(--orange); }
.badge-green     { background: rgba(0,204,102,0.12);   color: var(--green); }
.badge-amber     { background: rgba(255,204,0,0.12);   color: var(--yellow); }
.badge-red       { background: rgba(255,51,102,0.12);  color: var(--red); }
.badge-blue      { background: rgba(59,130,246,0.12);  color: var(--blue); }
.badge-gray      { background: rgba(255,255,255,0.06); color: var(--muted); }
.badge-purple    { background: rgba(168,85,247,0.15);  color: var(--purple); }

/* =====================================================================
   CLS / PERF — stabilisateurs
   ===================================================================== */
#qr-code-img { width: 150px; height: 150px; display: block; }
.navbar-brand svg { width: 110px; height: 32px; flex-shrink: 0; }
@media (min-width: 900px) { .navbar-brand svg { width: 130px; height: 36px; } }
