/* ═══════════════════════════════════════════════════════════════
   TECH SAVVY PK — Main stylesheet (Light + Red theme)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #fafafa;
  --surface-2: #f4f4f5;
  --surface-3: #e4e4e7;

  --border: rgba(15, 15, 17, 0.08);
  --border-strong: rgba(15, 15, 17, 0.16);

  --text: #0a0a0b;
  --text-dim: rgba(15, 15, 17, 0.68);
  --text-faint: rgba(15, 15, 17, 0.48);

  --accent: #DC2626;
  --accent-dark: #B91C1C;
  --accent-light: #FEE2E2;
  --accent-soft: rgba(220, 38, 38, 0.08);
  --accent-border: rgba(220, 38, 38, 0.25);

  --warn: #D97706;
  --info: #2563EB;
  --success: #16A34A;
  --danger: #B91C1C;
  --pending: #CA8A04;

  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 14px 36px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-accent: 0 6px 20px rgba(220, 38, 38, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; min-height: 100vh; }

.display { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 700; }
.mono { font-family: var(--font-mono); }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 700; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.5rem; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ─────────── NAVBAR ─────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0.9rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--text); }
.brand img { width: 36px; height: 36px; }
.brand-text .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; line-height: 1; color: var(--text); }
.brand-text .brand-tag { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); letter-spacing: 0.1em; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text-dim); transition: all 0.2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-links a.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.user-chip { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.75rem 0.4rem 0.4rem; border: 1px solid var(--border); border-radius: 999px; background: var(--bg); transition: all 0.2s; color: var(--text); }
.user-chip:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.user-chip .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; overflow: hidden; flex-shrink: 0; }
.user-chip .avatar.avatar-photo { background: transparent; }
.user-chip .avatar.avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.user-chip.admin .avatar { background: var(--text); }
.user-chip.freelancer .avatar { background: var(--info); }
.user-chip .name { font-size: 13px; font-weight: 600; line-height: 1; color: var(--text); }
.user-chip .role { font-family: var(--font-mono); font-size: 9px; color: var(--text-faint); letter-spacing: 0.08em; margin-top: 3px; }

.icon-btn { background: transparent; border: 0; color: var(--text-dim); padding: 0.5rem; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; }
.icon-btn:hover { background: var(--surface-2); color: var(--text); }

.nav-toggle { display: none; background: transparent; border: 0; color: var(--text); padding: 0.5rem; cursor: pointer; }

/* FIX — mobile menu hidden on desktop */
.nav-mobile { display: none; }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border-strong); }
.btn-secondary:hover { background: var(--surface); border-color: var(--text-faint); }

.btn-ghost { background: transparent; color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }

.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #1f1f22; }

.btn-danger { background: var(--bg); color: var(--danger); border: 1px solid rgba(185, 28, 28, 0.3); }
.btn-danger:hover { background: #FEF2F2; }

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ─────────── CARDS ─────────── */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.card-hover { transition: all 0.2s; cursor: pointer; text-align: left; }
.card-hover:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }

.tag { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.65rem; border-radius: 6px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-accent { background: var(--accent-light); color: var(--accent-dark); }
.tag-warn { background: #FFF7ED; color: #9A3412; }
.tag-info { background: #EFF6FF; color: #1E40AF; }
.tag-success { background: #F0FDF4; color: #15803D; }
.tag-pending { background: #FEFCE8; color: #854D0E; }
.tag-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.pill { display: inline-block; padding: 0.25rem 0.65rem; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); color: var(--text-faint); font-weight: 600; }

/* ─────────── FORMS ─────────── */
.field { display: block; margin-bottom: 1rem; }
.field label, .label-sm { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.45rem; font-weight: 600; }

.input, .textarea, .select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.15s;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.textarea { resize: vertical; min-height: 100px; }

.check-row { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.83rem; color: var(--text-dim); cursor: pointer; line-height: 1.5; }
.check-row input[type='checkbox'] { accent-color: var(--accent); margin-top: 3px; width: 16px; height: 16px; }

.hint { font-size: 12px; color: var(--text-faint); margin-top: 6px; }

/* (.demo-hint rules removed in production cleanup — class no longer used) */

/* ─────────── FILE UPLOAD ─────────── */
.file-drop {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
}
.file-drop:hover, .file-drop.drag-over { border-color: var(--accent); background: var(--accent-light); }
.file-drop.drag-over { transform: scale(1.01); }
.file-drop input[type="file"] { display: none; }
.file-drop .fd-icon,
.file-drop .file-drop-icon { color: var(--accent); margin-bottom: 0.5rem; display: inline-flex; }
.file-drop .fd-main,
.file-drop .file-drop-title { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.file-drop .fd-sub,
.file-drop .file-drop-hint { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.file-drop-inner { display: flex; flex-direction: column; align-items: center; pointer-events: none; }

.upload-preview { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.upload-chip {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.upload-chip img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; background: var(--surface-2); flex-shrink: 0; }
.upload-chip .uc-icon-box { width: 40px; height: 40px; border-radius: 6px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.upload-chip .uc-body { flex: 1; min-width: 0; }
.upload-chip .uc-name { font-size: 0.85rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text); }
.upload-chip .uc-size { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); margin-top: 2px; }
.upload-chip .uc-remove { background: transparent; border: 0; color: var(--text-faint); cursor: pointer; padding: 4px; border-radius: 4px; display: inline-flex; }
.upload-chip .uc-remove:hover { color: var(--danger); background: #FEF2F2; }

/* ─────────── TOAST ─────────── */
.toast-container { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 100; display: flex; flex-direction: column; gap: 0.5rem; }
.toast { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.15rem; border-radius: var(--radius); background: var(--text); color: #fff; font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-lg); animation: toast-in 0.3s ease-out; }
.toast.error { background: var(--accent); }

@keyframes toast-in { from { transform: translateX(calc(100% + 2rem)); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─────────── FOOTER ─────────── */
.footer { border-top: 1px solid var(--border); margin-top: 5rem; padding: 3rem 0 2rem; color: var(--text-dim); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.15s; }
.footer ul a:hover { color: var(--accent); }
.footer-meta { padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); letter-spacing: 0.08em; font-weight: 600; }

/* ─────────── HERO ─────────── */
.hero { position: relative; padding: 5rem 0 6rem; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; border-radius: 50%; filter: blur(140px); background: radial-gradient(circle, rgba(220,38,38,0.18), transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }

.hero .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.9rem; border-radius: 999px; background: var(--accent-light); border: 1px solid var(--accent-border); color: var(--accent-dark); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 2rem; }
.hero .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { font-size: 1.1rem; color: var(--text-dim); max-width: 580px; margin-bottom: 2.25rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm); }
.stats .stat { padding: 1.75rem 1.5rem; border-right: 1px solid var(--border); }
.stats .stat:last-child { border-right: 0; }
.stats .stat-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--text); }
.stats .stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; font-weight: 600; }

/* ─────────── SERVICES PREVIEW ─────────── */
.eyebrow-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 0.75rem; display: block; font-weight: 700; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1rem; margin-top: 2.5rem; }

.service-card { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: left; overflow: hidden; transition: all 0.25s; cursor: pointer; display: block; box-shadow: var(--shadow-sm); }
.service-card:hover { border-color: var(--accent-border); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card .svc-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 24px; background: var(--accent-light); color: var(--accent); }
.service-card h3 { margin-bottom: 0.4rem; font-size: 1.35rem; }
.service-card .svc-tag { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 1.5rem; line-height: 1.55; }
.service-card .svc-foot { padding-top: 1rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.service-card .svc-foot .price { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-faint); font-weight: 600; }
.service-card .svc-foot .arrow { color: var(--accent); transition: transform 0.2s; font-weight: 600; }
.service-card:hover .svc-foot .arrow { transform: translateX(4px); }

/* ─────────── PROCESS ─────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.step .step-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem; font-weight: 700; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; }

/* ─────────── CTA BANNER ─────────── */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, #1a0505 0%, #3a0a0a 100%); border-radius: var(--radius-xl); padding: 3rem; color: #fff; box-shadow: var(--shadow-lg); }
.cta-banner::after { content: ''; position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: var(--accent); filter: blur(120px); opacity: 0.5; pointer-events: none; }
.cta-banner h2 { margin-bottom: 1.25rem; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; max-width: 500px; line-height: 1.6; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .eyebrow-label { color: #FCA5A5; }
.cta-banner .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ─────────── AUTH ─────────── */
.auth-page { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
.auth-card { width: 100%; max-width: 440px; }
.auth-card-wide { max-width: 520px; }
.auth-head { text-align: center; margin-bottom: 2rem; }
.auth-head h1 { font-size: 2.25rem; margin-bottom: 0.5rem; }
.auth-head p { color: var(--text-dim); font-size: 0.9rem; }
.auth-body { padding: 2rem; box-shadow: var(--shadow); }
.auth-foot { margin-top: 1.25rem; text-align: center; font-size: 0.85rem; color: var(--text-dim); }
.auth-foot a { color: var(--accent); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }

.admin-banner { display: flex; align-items: center; gap: 0.5rem; padding: 0.65rem 0.85rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; margin-bottom: 1.25rem; }

/* ─────────── ABOUT ─────────── */
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; margin-top: 2rem; }
.about-grid p { color: var(--text-dim); line-height: 1.75; margin-bottom: 1.25rem; font-size: 1rem; }
.about-grid strong { color: var(--text); }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 3rem; }
.value-card { padding: 1.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.value-card .v-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--accent-light); border-radius: 10px; color: var(--accent); font-size: 20px; margin-bottom: 0.85rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.value-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.55; }

/* ─────────── CONTACT ─────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; margin-top: 2rem; }
.contact-info-list { display: grid; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item .ic { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--accent-light); color: var(--accent); border-radius: 10px; flex-shrink: 0; }
.contact-info-item .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; margin-bottom: 3px; font-weight: 600; }
.contact-info-item .val { font-size: 0.95rem; font-weight: 500; }

/* ─────────── SERVICES PAGE ─────────── */
.service-tabs { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.25rem 0 1rem; margin-bottom: 1.5rem; }
.service-tabs::-webkit-scrollbar { display: none; }
.svc-tab { flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.6rem 1rem; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border); color: var(--text); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.15s; white-space: nowrap; font-family: var(--font-body); }
.svc-tab:hover { border-color: var(--border-strong); }
.svc-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--shadow-accent); }

.service-hero { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; margin-bottom: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; box-shadow: var(--shadow-sm); }
.service-hero .big-icon { width: 68px; height: 68px; border-radius: 14px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.service-hero h2 { margin-bottom: 0.5rem; font-size: 2rem; }
.service-hero p { color: var(--text-dim); max-width: 650px; line-height: 1.65; }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pkg { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.pkg.featured { border-color: var(--accent); box-shadow: var(--shadow-accent); }
.pkg .pkg-badge { position: absolute; top: -11px; left: 1.25rem; background: var(--accent); color: #fff; padding: 0.25rem 0.7rem; border-radius: 6px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.pkg .pkg-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pkg-tier { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.pkg-days { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--text-faint); padding: 0.25rem 0.5rem; border: 1px solid var(--border); border-radius: 4px; font-weight: 600; }
.pkg-price { margin-bottom: 1.5rem; }
.pkg-price .amt { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--text); }
.pkg-price .cur { color: var(--text-faint); font-size: 0.85rem; margin-left: 4px; font-weight: 600; }
.pkg-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.pkg-features li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; padding: 0.4rem 0; color: var(--text-dim); }
.pkg-features .check { color: var(--accent); flex-shrink: 0; margin-top: 1px; font-weight: 700; }

.guarantee-note { margin-top: 2rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); display: flex; gap: 0.65rem; align-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); line-height: 1.5; }
.guarantee-note svg { color: var(--accent); flex-shrink: 0; }

/* ─────────── MOBILE ─────────── */
@media (max-width: 880px) {
  .nav-links, .nav-actions .auth-links, .nav-actions .admin-link { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile { display: none; border-top: 1px solid var(--border); padding: 1rem 1.5rem; background: var(--bg); }
  .nav-mobile.open { display: block; }
  .nav-mobile a, .nav-mobile button { display: block; width: 100%; text-align: left; padding: 0.65rem 0; font-size: 0.92rem; color: var(--text); background: transparent; border: 0; cursor: pointer; font-family: var(--font-body); text-decoration: none; }
  .nav-mobile .primary { color: var(--accent); font-weight: 700; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat:nth-child(2) { border-right: 0; }
  .stats .stat:nth-child(1), .stats .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .packages-grid, .process-grid { grid-template-columns: 1fr; }
  .service-hero { flex-direction: column; }
  .footer-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.5rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
}

/* ───────────────────── RICH FOOTER (global) ───────────────────── */
.footer-17 {
  background: #0a0a0b;
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
  margin-top: 4rem;
}
.footer-17 .container { max-width: 1200px; }
.footer-17-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-17-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-17-grid { grid-template-columns: 1fr; } }

.footer-17 .brand-block { display: flex; flex-direction: column; }
.footer-17 .brand-white {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-17 .brand-white img {
  width: 42px; height: 42px;
  filter: brightness(0) invert(1);
}
.footer-17 .brand-white .brand-text { color: #fff; }
.footer-17 .brand-white .brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-17 .brand-white .brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}
.footer-17 .brand-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,0.55);
}
.footer-17 .socials { display: flex; gap: 0.5rem; }
.footer-17 .socials a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-17 .socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-17 .socials svg { width: 15px; height: 15px; }

.footer-17 h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.footer-17 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-17 ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-17 ul a:hover { color: var(--accent); }
.footer-17 .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-17 .contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-17 .contact-item a:hover { color: var(--accent); }
.footer-17 .contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-17-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.footer-17-bottom .links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-17-bottom .links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-17-bottom .links a:hover { color: var(--accent); }
