:root {
  --black: #050505;
  --card-bg: #111111;
  --card-border: #1e1e1e;
  --hot-pink: #ff0066;
  --soft-pink: #ff66a3;
  --white: #ffffff;
  --text-muted: #888888;
  --grad-pink: linear-gradient(135deg, #ff0066, #ff3385);
  --bg: #0d0d0d;
  /* Mobile-safe touch target minimum */
  --tap-min: 44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── BG CANVAS ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  background: var(--black); overflow: hidden; pointer-events: none;
}
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.22; animation: float 12s ease-in-out infinite; }
.orb-1 { width:600px; height:600px; background:#ff0066; top:-200px; left:-150px; animation-delay:0s; }
.orb-2 { width:500px; height:500px; background:#cc0052; bottom:-150px; right:-100px; animation-delay:-4s; }
.orb-3 { width:400px; height:400px; background:#ff3385; top:40%; left:55%; animation-delay:-8s; }
@keyframes float { 0%,100% { transform:translateY(0) scale(1); } 50% { transform:translateY(-40px) scale(1.05); } }

/* ── STARS ── */
.stars { position: fixed; inset: 0; z-index: 2; pointer-events: none; }
.star { position: absolute; background: #fff; border-radius: 50%; animation: twinkle var(--dur,4s) var(--delay,0s) ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity:0.15; } 50% { opacity:0.8; } }

/* ── CURSOR GLOW (desktop only) ── */
#cursor-glow {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,102,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 3; transform: translate(-50%, -50%);
  transition: left .06s linear, top .06s linear;
}
@media (hover: none) { #cursor-glow { display: none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 70px;
  background: rgba(5,5,5,0.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}
.logo { text-decoration: none; font-size: 1.35rem; font-weight: 900; letter-spacing: -0.5px; flex-shrink: 0; }
.logo-rnt { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-designs { color: var(--white); -webkit-text-fill-color: var(--white); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color .2s; min-height: var(--tap-min); display: inline-flex; align-items: center; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--grad-pink) !important;
  color: var(--white) !important; -webkit-text-fill-color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 8px;
  font-weight: 700 !important; font-size: 0.82rem !important; letter-spacing: 0.5px;
  box-shadow: 0 0 18px rgba(255,0,102,0.4);
  transition: opacity .2s, box-shadow .2s !important;
}
.nav-cta:hover { opacity: 0.85; box-shadow: 0 0 28px rgba(255,0,102,0.6); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: var(--tap-min); height: var(--tap-min);
  background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}

/* ── MOBILE NAV DRAWER ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }
.mobile-nav {
  position: fixed; top: 0; right: -100%; z-index: 400;
  width: min(320px, 85vw); height: 100dvh;
  background: #0d0d0d; border-left: 1px solid var(--card-border);
  display: flex; flex-direction: column; padding: 5rem 2rem 2rem;
  gap: 0.5rem; transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: var(--text-muted); text-decoration: none; font-size: 1.1rem; font-weight: 600;
  padding: 0.9rem 0; border-bottom: 1px solid var(--card-border);
  min-height: var(--tap-min); display: flex; align-items: center;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav-cta {
  margin-top: 1.5rem;
  background: var(--grad-pink) !important; color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  justify-content: center; border-radius: 10px; padding: 1rem 1.5rem !important;
  font-weight: 700 !important; box-shadow: 0 0 20px rgba(255,0,102,0.3);
  border-bottom: none !important;
}
.mobile-nav-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.3rem; cursor: pointer; width: var(--tap-min); height: var(--tap-min);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.mobile-nav-close:hover { color: var(--white); }

/* ── PAGES ── */
.page { display: none; position: relative; z-index: 5; min-height: 100vh; padding-top: 70px; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 5rem 1.5rem 6rem;
  min-height: calc(100dvh - 70px); justify-content: center;
}
.hero h1 { font-size: clamp(2.6rem,8vw,6.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.4rem; color: var(--white); }
.line-plain { display: block; color: var(--white); -webkit-text-fill-color: var(--white); }
.line-pink { display: block; background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.line-white-pink { display: block; color: var(--white); -webkit-text-fill-color: var(--white); }
.word-convert { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero > p { color: var(--text-muted); font-size: clamp(0.95rem,2vw,1.2rem); max-width: 540px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--grad-pink); color: var(--white); -webkit-text-fill-color: var(--white);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(255,0,102,0.35);
  transition: opacity .2s, transform .2s, box-shadow .2s; display: inline-flex;
  align-items: center; justify-content: center; min-height: var(--tap-min);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 0 32px rgba(255,0,102,0.6); }
.btn-secondary {
  background: transparent; color: var(--white); -webkit-text-fill-color: var(--white);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s; display: inline-flex;
  align-items: center; justify-content: center; min-height: var(--tap-min);
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover { border-color: var(--hot-pink); transform: translateY(-2px); box-shadow: 0 0 20px rgba(255,0,102,0.2); }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-muted); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-hint svg { width: 18px; height: 18px; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 0.9rem 0; background: rgba(255,0,102,0.03); }
.ticker-inner { display: flex; animation: ticker 28s linear infinite; white-space: nowrap; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: 0.6rem; padding: 0 2rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }
.ticker-item span { color: var(--hot-pink); font-size: 0.6rem; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-inner, .orb, .star, .scroll-hint svg { animation: none; } }

/* ── SECTIONS ── */
.section { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--hot-pink); margin-bottom: 0.8rem; }
.section-title { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 0.8rem; color: var(--white); }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }
.pink { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pink-text { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── SERVICE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 2.5rem; }
.card { padding: 1.5rem 2rem 1.5rem 0; border-right: 1px solid var(--card-border); }
.card:last-child { border-right: none; padding-right: 0; }
.card-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; color: var(--hot-pink); margin-bottom: 1.2rem; }
.card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.6rem; color: var(--white); }
.card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-section { padding-top: 0; }
.cta-banner { background: linear-gradient(135deg, rgba(255,0,102,0.12), rgba(255,51,133,0.06)); border: 1px solid rgba(255,0,102,0.25); border-radius: 20px; padding: 4rem 3rem; text-align: center; }
.cta-banner h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; margin-bottom: 0.8rem; color: var(--white); }
.cta-banner p { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 0 auto 2rem; }
.cta-btn { font-size: 1rem !important; padding: 1rem 2.5rem !important; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; max-width: 1100px; margin: 0 auto; padding: 4rem 2rem 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 1rem; color: var(--white); }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: rgba(255,0,102,0.1); border: 1px solid rgba(255,0,102,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail p:first-child { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail p:last-child { font-size: 0.95rem; font-weight: 500; color: var(--white); }
.social-links { display: flex; gap: 0.8rem; margin-top: 2rem; }
.social-link { width: 44px; height: 44px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-muted); font-size: 0.85rem; font-weight: 700; transition: border-color .2s, color .2s; -webkit-tap-highlight-color: transparent; }
.social-link:hover { border-color: var(--hot-pink); color: var(--hot-pink); }

/* ── FORMS ── */
.form-panel, .form-glass { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 2.5rem; }
.form-panel h3, .form-glass h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.8rem; color: var(--white); }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 0.8rem 1rem; color: var(--white);
  font-family: inherit; font-size: 1rem; outline: none;
  transition: border-color .3s; appearance: none; -webkit-appearance: none;
  min-height: var(--tap-min);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--hot-pink); box-shadow: 0 0 0 3px rgba(255,0,102,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--grad-pink); color: var(--white); -webkit-text-fill-color: var(--white);
  padding: 1rem; border-radius: 10px; border: none;
  font-size: 1rem; font-weight: 700; cursor: pointer; letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255,0,102,0.3);
  transition: opacity .2s, transform .2s, box-shadow .2s;
  min-height: var(--tap-min); -webkit-tap-highlight-color: transparent;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 0 30px rgba(255,0,102,0.5); }
.success-msg { flex-direction: column; align-items: center; text-align: center; padding: 3rem 1rem; gap: 0.5rem; }
.check { font-size: 3rem; margin-bottom: 0.5rem; }
.success-msg strong { font-size: 1.2rem; color: var(--white); }
.success-msg span { color: var(--text-muted); font-size: 0.9rem; }

/* ── QUOTE ── */
.quote-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.quote-wrap h2 { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 0.6rem; color: var(--white); }
.quote-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── PORTFOLIO ── */
.portfolio-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.portfolio-header { margin-bottom: 2.5rem; }
.portfolio-header h2 { font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 0.4rem; color: var(--white); }
.portfolio-header p { color: var(--text-muted); }
.project-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.project-tab { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.4rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; min-height: var(--tap-min); -webkit-tap-highlight-color: transparent; }
.project-tab:hover, .project-tab.active { border-color: var(--hot-pink); background: rgba(255,0,102,0.06); }
.tab-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; color: var(--hot-pink); }
.tab-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.tab-placeholder { opacity: 0.45; cursor: default; }
.preview-window { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.2rem; background: #0a0a0a; border-bottom: 1px solid var(--card-border); }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.browser-url { flex: 1; font-size: 0.78rem; color: var(--text-muted); background: #111; padding: 0.35rem 0.8rem; border-radius: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-open { font-size: 0.78rem; color: var(--soft-pink); text-decoration: none; font-weight: 600; flex-shrink: 0; min-height: var(--tap-min); display: flex; align-items: center; }
.browser-open:hover { color: var(--hot-pink); }
.preview-banner { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
.preview-banner-inner { display: flex; align-items: baseline; gap: 1rem; }
.preview-banner-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; color: var(--hot-pink); }
.preview-banner-name { font-size: 1.4rem; font-weight: 900; color: var(--white); }
.preview-launch { background: var(--grad-pink); color: var(--white); -webkit-text-fill-color: var(--white); padding: 0.65rem 1.4rem; border-radius: 8px; border: none; font-size: 0.85rem; font-weight: 700; cursor: pointer; box-shadow: 0 0 16px rgba(255,0,102,0.3); transition: opacity .2s; min-height: var(--tap-min); -webkit-tap-highlight-color: transparent; }
.preview-launch:hover { opacity: 0.85; }
.iframe-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; height: 260px; color: var(--text-muted); }
.placeholder-icon { font-size: 2.5rem; }
.iframe-placeholder p { font-size: 0.9rem; }
#preview-iframe { width: 100%; height: 480px; border: none; display: block; }
.portfolio-cta { margin-top: 2.5rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; }
.portfolio-cta a { color: var(--soft-pink); text-decoration: none; font-weight: 600; }
.portfolio-cta a:hover { color: var(--hot-pink); }

/* ── ADMIN LOGIN ── */
.admin-login-wrap { min-height: calc(100dvh - 70px); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.admin-login-box { width: 100%; max-width: 420px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 2.5rem; }
.admin-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.8rem; }
.admin-badge { background: rgba(255,0,102,0.15); border: 1px solid rgba(255,0,102,0.3); color: var(--hot-pink); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 4px; }
.admin-login-box h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.4rem; color: var(--white); }
.admin-login-box > p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.8rem; }
.admin-error { display: none; color: var(--hot-pink); font-size: 0.82rem; background: rgba(255,0,102,0.08); border: 1px solid rgba(255,0,102,0.2); border-radius: 6px; padding: 0.6rem 0.9rem; margin-bottom: 1rem; }

/* ── ADMIN DASHBOARD ── */
#page-admin-dashboard { padding: 0 !important; padding-top: 70px !important; }
.admin-dashboard-wrap { width: 100%; min-height: calc(100dvh - 70px); display: flex; flex-direction: column; }
.admin-topbar { display: flex; align-items: center; gap: 1.5rem; padding: 0.75rem 2rem; background: #080808; border-bottom: 1px solid var(--card-border); position: sticky; top: 70px; z-index: 10; }
.admin-topbar-left { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.admin-tabs { display: flex; gap: 0.4rem; flex: 1; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.admin-tabs::-webkit-scrollbar { height: 0; }
.admin-tab-btn { padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid transparent; background: transparent; color: var(--text-muted); font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .2s; min-height: var(--tap-min); -webkit-tap-highlight-color: transparent; }
.admin-tab-btn:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.admin-tab-btn.active { background: rgba(255,0,102,0.12); color: var(--white); border-color: rgba(255,0,102,0.3); }
.admin-signout-btn { padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid var(--card-border); background: transparent; color: var(--text-muted); font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: all .2s; min-height: var(--tap-min); }
.admin-signout-btn:hover { border-color: var(--hot-pink); color: var(--hot-pink); }
.admin-content { flex: 1; padding: 2.5rem 2rem; max-width: 1400px; width: 100%; margin: 0 auto; box-sizing: border-box; }
.admin-tab { display: none; }
.admin-tab.active { display: block; }
.admin-tab-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap; }
.admin-tab-header h2 { font-size: 1.5rem; font-weight: 900; margin: 0; color: var(--white); }

/* ── LEADS TABLE ── */
.lead-filters { display: flex; gap: 0.5rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.lead-filter { padding: 0.4rem 1rem; border-radius: 6px; border: 1px solid var(--card-border); background: transparent; color: var(--text-muted); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all .2s; min-height: var(--tap-min); }
.lead-filter:hover, .lead-filter.active { border-color: var(--hot-pink); color: var(--white); background: rgba(255,0,102,0.1); }
.leads-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.leads-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.leads-table th { text-align: left; padding: 0.75rem 1rem; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--card-border); white-space: nowrap; }
.leads-table td { padding: 0.85rem 1rem; border-bottom: 1px solid rgba(30,30,30,0.6); vertical-align: middle; }
.leads-table tr:hover td { background: rgba(255,255,255,0.02); }
.lead-check { width: 22px; height: 22px; border: 2px solid var(--card-border); border-radius: 4px; cursor: pointer; transition: all .2s; }
.lead-check.checked { background: var(--hot-pink); border-color: var(--hot-pink); }
.status-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 4px; white-space: nowrap; }
.status-lead { background: rgba(255,165,0,0.15); color: #ffaa00; border: 1px solid rgba(255,165,0,0.3); }
.status-client { background: rgba(0,200,100,0.15); color: #00c864; border: 1px solid rgba(0,200,100,0.3); }
.status-done { background: rgba(136,136,136,0.15); color: #aaa; border: 1px solid rgba(136,136,136,0.3); }
.action-btn { padding: 0.3rem 0.75rem; border-radius: 5px; border: 1px solid var(--card-border); background: transparent; color: var(--text-muted); font-size: 0.75rem; cursor: pointer; transition: all .2s; margin-right: 0.3rem; min-height: 36px; }
.action-btn:hover { border-color: var(--soft-pink); color: var(--white); }
.action-btn.del:hover { border-color: var(--hot-pink); color: var(--hot-pink); }

/* ── SUBMISSIONS ── */
.submissions-list { display: flex; flex-direction: column; gap: 1rem; }
.submission-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.2rem 1.5rem; }
.submission-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; flex-wrap: wrap; gap: 0.5rem; }
.submission-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--hot-pink); }
.submission-date { font-size: 0.75rem; color: var(--text-muted); }
.submission-field { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.submission-field strong { color: var(--white); margin-right: 0.4rem; }

/* ── TODO ── */
.todo-input-row { display: flex; gap: 0.75rem; margin-bottom: 1.2rem; }
.todo-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); border-radius: 8px; padding: 0.75rem 1rem; color: var(--white); font-family: inherit; font-size: 1rem; outline: none; transition: border-color .3s; min-height: var(--tap-min); }
.todo-input:focus { border-color: var(--hot-pink); }
.todo-list { display: flex; flex-direction: column; gap: 0.6rem; }
.todo-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.85rem 1rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; transition: opacity .2s; min-height: var(--tap-min); }
.todo-item.done { opacity: 0.5; }
.todo-checkbox { width: 24px; height: 24px; border: 2px solid var(--card-border); border-radius: 50%; cursor: pointer; flex-shrink: 0; transition: all .2s; -webkit-tap-highlight-color: transparent; }
.todo-checkbox.checked { background: var(--hot-pink); border-color: var(--hot-pink); }
.todo-text { flex: 1; font-size: 0.9rem; color: var(--white); }
.todo-item.done .todo-text { text-decoration: line-through; color: var(--text-muted); }
.todo-del { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.9rem; transition: color .2s; padding: 0.4rem; min-width: var(--tap-min); min-height: var(--tap-min); display: flex; align-items: center; justify-content: center; }
.todo-del:hover { color: var(--hot-pink); }

/* ── NOTES ── */
.notes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; }
.note-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.note-card-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.note-card-header strong { font-size: 0.95rem; color: var(--white); }
.note-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.note-actions { display: flex; gap: 0.5rem; }

/* ── STATUS PICKER ── */
.status-select-wrap { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.5rem; }
.status-option { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1rem; border: 1px solid var(--card-border); border-radius: 8px; cursor: pointer; transition: border-color .2s, background .2s; min-height: var(--tap-min); -webkit-tap-highlight-color: transparent; }
.status-option:hover { background: rgba(255,255,255,0.03); }
.status-option.selected { border-color: var(--hot-pink); background: rgba(255,0,102,0.06); }
.status-desc { font-size: 0.78rem; color: var(--text-muted); }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.8); backdrop-filter: blur(6px); align-items: flex-end; justify-content: center; padding: 0; }
.modal-overlay.open { display: flex; }
.modal-box {
  background: #161616; border: 1px solid rgba(255,0,102,0.2);
  border-radius: 20px 20px 0 0; padding: 2rem; width: 100%; max-width: 100%;
  max-height: 92dvh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  box-shadow: 0 -20px 60px rgba(255,0,102,0.15); animation: sheetIn .25s ease;
}
@keyframes sheetIn { from { transform:translateY(100%); opacity:0; } to { transform:translateY(0); opacity:1; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; line-height: 1; transition: color .2s; width: var(--tap-min); height: var(--tap-min); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { color: var(--white); }
.modal-footer { display: flex; justify-content: flex-end; gap: 0.75rem; margin-top: 1.5rem; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 0.9rem; border: 1px dashed var(--card-border); border-radius: 12px; margin-top: 1rem; }

/* ── FOOTER ── */
footer { position: relative; z-index: 5; text-align: center; padding: 2rem; border-top: 1px solid var(--card-border); color: var(--text-muted); font-size: 0.82rem; letter-spacing: 0.5px; }
footer span { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }

/* ── SELECT OPTION DARK THEME ── */
.form-group select option { background: #1a1a1a; color: #ffffff; }
.form-group select option:checked,
.form-group select option:hover { background: #ff0066; color: #ffffff; }

/* ── TABLET (768px) ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; padding: 1.5rem; }
  .card { border-right: none; border-bottom: 1px solid var(--card-border); padding-right: 0; padding-bottom: 1.5rem; }
  .card:last-child { border-bottom: none; padding-bottom: 0; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .admin-topbar { flex-wrap: wrap; padding: 0.75rem 1rem; gap: 0.5rem; }
  .admin-tabs { order: 3; width: 100%; }
  .admin-content { padding: 1.5rem 1rem; }
  .section { padding: 4rem 1.25rem; }
  .quote-wrap { padding: 2rem 1.25rem 4rem; }
  .portfolio-wrap { padding: 2rem 1.25rem 4rem; }
  .hero { padding: 4rem 1.25rem 5rem; }
  #preview-iframe { height: 340px; }
}

/* ── MOBILE (480px) ── */
@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { text-align: center; justify-content: center; width: 100%; }
  .form-panel, .form-glass { padding: 1.5rem; border-radius: 16px; }
  .cta-banner { padding: 2rem 1.25rem; border-radius: 16px; }
  .admin-login-box { padding: 1.75rem 1.25rem; }
  .modal-box { padding: 1.5rem; border-radius: 16px 16px 0 0; }
  .modal-footer { flex-direction: column-reverse; }
  .modal-footer .btn-secondary,
  .modal-footer .btn-primary { width: 100%; justify-content: center; }
  .preview-banner { padding: 1rem; }
  .admin-topbar-left { display: none; }
  #preview-iframe { height: 280px; }
}

/* ── SAFE AREA (notch phones) ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
  .mobile-nav { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}
