/* ============================================================
   WebsiteVoorJou — Main Stylesheet
   ============================================================ */

:root {
  --bg:         #FFFFFF;
  --bg-2:       #F7F8FC;
  --bg-card:    #FFFFFF;
  --border:     #E4E8F0;
  --primary:    #5B4FE8;
  --primary-dark: #4840C8;
  --gradient:   linear-gradient(135deg, #5B4FE8 0%, #8B5CF6 100%);
  --gradient-r: linear-gradient(135deg, #8B5CF6 0%, #5B4FE8 100%);
  --text:       #0F172A;
  --text-muted: #64748B;
  --success:    #059669;
  --warning:    #D97706;
  --danger:     #DC2626;
  --bronze:     #B45309;
  --silver:     #64748B;
  --gold:       #B45309;
  --platinum:   #475569;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(91,79,232,0.10);
  --shadow-lg:  0 8px 40px rgba(91,79,232,0.16);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.15; color: var(--text); text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); letter-spacing: -0.025em; font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.7; }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.navbar-brand span { color: var(--primary); }
.navbar-nav { display: flex; gap: 28px; list-style: none; align-items: center; }
.navbar-nav a { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.navbar-nav a:hover { color: var(--text); }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; }
.navbar-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98) translateY(1px); }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 12px rgba(91,79,232,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91,79,232,0.45);
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(91,79,232,0.05); }
.btn-danger  { background: var(--danger); color: #fff; box-shadow: 0 2px 8px rgba(220,38,38,0.25); }
.btn-danger:hover { background: #b91c1c; color: #fff; transform: translateY(-1px); }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; font-weight: 700; }

/* ---- Hero ---- */
.hero {
  min-height: 100dvh; display: flex; align-items: center;
  padding-top: 80px;
  background: radial-gradient(ellipse at 70% 30%, rgba(91,79,232,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(139,92,246,0.05) 0%, transparent 50%);
  position: relative; overflow: hidden;
}
.hero-content { max-width: 600px; position: relative; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,79,232,0.08); border: 1px solid rgba(91,79,232,0.2);
  color: var(--primary); padding: 5px 14px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero h1 { margin-bottom: 20px; color: var(--text); }
.hero > .container > .hero-content > p { font-size: 1.1rem; max-width: 520px; margin-bottom: 12px; color: var(--text-muted); }
.hero-sub { font-size: 0.95rem !important; margin-bottom: 36px !important; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.hero-trust-item svg { color: var(--success); }
.hero-visual { flex: 1; min-width: 300px; display: flex; justify-content: center; align-items: center; }
.hero-photo {
  width: 100%; max-width: 620px; height: 640px;
  object-fit: cover; object-position: center top;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(91,79,232,0.16);
  display: block;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---- Sections ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }

/* ---- About / Intro ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-image {
  border-radius: var(--radius-lg); overflow: visible;
  min-height: 400px; display: flex; align-items: stretch;
}
.about-photo-wrap {
  position: relative; width: 100%;
}
.about-photo {
  width: 100%; height: auto; object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(91,79,232,0.14);
  display: block;
}

/* ---- Packages ---- */
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.package-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.package-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(108,99,255,0.1) 0%, var(--bg-card) 100%);
}
.package-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  padding: 4px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 700;
  white-space: nowrap;
}
.package-icon { font-size: 2.4rem; margin-bottom: 16px; }
.package-tier {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.tier-brons    { color: var(--bronze); }
.tier-zilver   { color: var(--silver); }
.tier-goud     { color: var(--gold); }
.tier-platinum { color: var(--platinum); }
.package-price { font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; }
.package-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.package-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.package-features { list-style: none; margin-bottom: 32px; flex: 1; }
.package-features li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.package-features li:last-child { border-bottom: none; }
.package-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.package-cta { margin-top: auto; }

/* ---- Steps ---- */
.steps-container { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.step {
  display: flex; gap: 32px; align-items: flex-start;
  padding-bottom: 40px; position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 23px; top: 50px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--primary), transparent);
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(108,99,255,0.4);
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  text-align: left; padding: 24px 0;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(108,99,255,0.15); border-color: var(--primary); color: var(--primary); }
.faq-answer { display: none; padding-bottom: 24px; color: var(--text-muted); }
.faq-item.open .faq-answer { display: block; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,99,255,0.15); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
}
.card:hover { border-color: rgba(108,99,255,0.3); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.card-title { font-size: 1.1rem; font-weight: 700; }

/* ---- Badges ---- */
.badge { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge-new       { background: rgba(108,99,255,0.15); color: var(--primary); }
.badge-progress  { background: rgba(0,212,255,0.12); color: var(--secondary); }
.badge-preview   { background: rgba(255,179,0,0.12); color: var(--warning); }
.badge-done      { background: rgba(0,230,118,0.12); color: var(--success); }
.badge-invoice   { background: rgba(255,82,82,0.12); color: var(--danger); }
.badge-paid      { background: rgba(0,230,118,0.2); color: var(--success); border: 1px solid rgba(0,230,118,0.3); }
.badge-bronze    { background: rgba(205,127,50,0.15); color: var(--bronze); }
.badge-silver    { background: rgba(168,178,193,0.15); color: var(--silver); }
.badge-gold      { background: rgba(255,215,0,0.15); color: var(--gold); }
.badge-platinum  { background: rgba(229,228,226,0.15); color: var(--platinum); }
.badge-lead      { background: rgba(0,212,255,0.12); color: var(--secondary); }
.badge-client    { background: rgba(0,230,118,0.12); color: var(--success); }

/* ---- Table ---- */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--bg-2); padding: 12px 16px; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); white-space: nowrap; }
td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,0,0,0.02); }

/* ---- Portal/Admin layout ---- */
.app-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px; flex-shrink: 0; background: var(--bg-2);
  border-right: 1px solid var(--border); padding: 24px 0;
  display: flex; flex-direction: column; position: fixed;
  top: 0; bottom: 0; left: 0; overflow-y: auto; z-index: 50;
}
.sidebar-brand { padding: 8px 24px 24px; font-size: 1.2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sidebar-section { padding: 4px 16px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 8px 0 4px; }
.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: var(--radius);
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  margin: 2px 8px; transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(108,99,255,0.1); color: var(--text); }
.sidebar-nav a.active { color: var(--primary); }
.sidebar-nav .nav-icon { width: 20px; text-align: center; }
.sidebar-footer { margin-top: auto; padding: 16px; border-top: 1px solid var(--border); }
.sidebar-user { display: flex; align-items: center; gap: 12px; padding: 8px; }
.sidebar-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.sidebar-user-name { font-size: 0.9rem; font-weight: 600; }
.sidebar-user-role { font-size: 0.75rem; color: var(--text-muted); }

.main-content { flex: 1; margin-left: 260px; padding: 32px; }
.page-header { margin-bottom: 32px; }
.page-header h1 { font-size: 1.8rem; }
.page-header p { color: var(--text-muted); margin-top: 4px; }
.page-header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---- Stats ---- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-value { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ---- File upload ---- */
.file-drop {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; cursor: pointer;
  transition: var(--transition);
}
.file-drop:hover, .file-drop.drag-over { border-color: var(--primary); background: rgba(108,99,255,0.05); }
.file-drop-icon { font-size: 2.5rem; margin-bottom: 12px; }
.file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.file-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--bg-2); border-radius: var(--radius); border: 1px solid var(--border); font-size: 0.9rem; }
.file-item-icon { font-size: 1.2rem; }
.file-item-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item-size { color: var(--text-muted); font-size: 0.8rem; white-space: nowrap; }

/* ---- Alerts ---- */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.alert-success { background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2); color: var(--success); }
.alert-danger   { background: rgba(255,82,82,0.1);  border: 1px solid rgba(255,82,82,0.2);  color: var(--danger); }
.alert-info     { background: rgba(0,212,255,0.1);  border: 1px solid rgba(0,212,255,0.2);  color: var(--secondary); }
.alert-warning  { background: rgba(255,179,0,0.1);  border: 1px solid rgba(255,179,0,0.2);  color: var(--warning); }

/* ---- Status timeline ---- */
.status-timeline { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding: 16px 0; }
.timeline-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; min-width: 100px; position: relative;
}
.timeline-step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 16px; left: 50%; width: 100%; height: 2px;
  background: var(--border); z-index: 0;
}
.timeline-step.done:not(:last-child)::after { background: var(--gradient); }
.timeline-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; position: relative; z-index: 1;
}
.timeline-step.done .timeline-dot   { background: var(--gradient); border-color: transparent; color: #fff; }
.timeline-step.active .timeline-dot { border-color: var(--primary); box-shadow: 0 0 12px rgba(108,99,255,0.5); }
.timeline-label { font-size: 0.7rem; text-align: center; margin-top: 8px; color: var(--text-muted); max-width: 80px; }
.timeline-step.done .timeline-label, .timeline-step.active .timeline-label { color: var(--text); }

/* ---- Portfolio ---- */
.portfolio-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,99,255,0.15); border-color: var(--primary); }
.portfolio-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--bg-2); }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.04); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(108,99,255,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.portfolio-overlay span { color: #fff; font-weight: 700; font-size: 1rem; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-thumb-link { display: block; }
.portfolio-info { padding: 16px 20px; }
.portfolio-name { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.portfolio-url { font-size: 0.82rem; color: var(--primary); text-decoration: none; }
.portfolio-url:hover { text-decoration: underline; }
@media (max-width: 768px) { .portfolio-card { margin-bottom: 8px; } }

/* ---- Footer ---- */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { font-size: 1.3rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); max-width: 280px; }
.footer-heading { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; gap: 16px; }

/* ---- Preview protection ---- */
.preview-wrapper { position: fixed; inset: 0; z-index: 999; display: flex; flex-direction: column; }
.preview-bar {
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-shrink: 0;
}
.preview-bar-brand { font-size: 1rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.preview-watermark-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.preview-watermark-text {
  font-size: 3rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(108,99,255,0.15);
  transform: rotate(-30deg); white-space: nowrap;
  text-shadow: none; pointer-events: none; user-select: none;
}
.preview-frame-container { flex: 1; position: relative; }
.preview-frame-container iframe { width: 100%; height: 100%; border: none; }
.preview-overlay {
  position: absolute; inset: 0; background: transparent;
  z-index: 5; cursor: default;
}

/* ---- Misc ---- */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.flex { display: flex; } .flex-1 { flex: 1; } .gap-2 { gap: 16px; } .gap-1 { gap: 8px; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
/* ---- Mobile topbar & hamburger ---- */
.mobile-topbar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px; background: var(--bg-2); border-bottom: 1px solid var(--border);
  align-items: center; padding: 0 16px; gap: 16px;
}
.mobile-topbar-brand {
  font-size: 1rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.sidebar-toggle {
  background: none; border: none; cursor: pointer;
  padding: 6px; display: flex; flex-direction: column; gap: 5px;
}
.sidebar-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 49;
}
.sidebar-overlay.open { display: block; }

@media (max-width: 768px) {
  .navbar-nav { display: none; flex-direction: column; background: var(--bg-2); position: absolute; top: 100%; left: 0; right: 0; padding: 20px; border-bottom: 1px solid var(--border); }
  .navbar-nav.open { display: flex; }
  .navbar-toggle { display: block; }
  .hero { flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-photo { height: 320px; }
  .hero-photo-badge { right: 8px; }
  .hero-photo-review { left: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { height: 320px; }
  .about-photo-quote { position: static; margin-top: 16px; box-shadow: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-topbar { display: flex; }
  .sidebar { transform: translateX(-100%); transition: var(--transition); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; padding-top: calc(56px + 24px); }
  .form-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
}

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }

/* ---- Glow ---- */
.glow { box-shadow: 0 0 40px rgba(108,99,255,0.3); }

/* ---- Filter bar ---- */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; align-items: flex-end; }
.filter-bar .form-group { margin-bottom: 0; min-width: 160px; }

/* ---- Invoice ---- */
.invoice-preview { background: #fff; color: #111; border-radius: var(--radius); padding: 48px; max-width: 800px; }
.invoice-preview * { color: #111; }
.invoice-header { display: flex; justify-content: space-between; margin-bottom: 40px; }
.invoice-logo { font-size: 1.8rem; font-weight: 800; color: #6C63FF !important; }
.invoice-meta { text-align: right; font-size: 0.9rem; }
.invoice-meta h2 { font-size: 1.5rem; color: #6C63FF !important; margin-bottom: 8px; }
.invoice-parties { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.invoice-party h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #666 !important; margin-bottom: 8px; }
.invoice-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.invoice-table th { background: #f4f4f8; padding: 10px 14px; text-align: left; font-size: 0.85rem; }
.invoice-table td { padding: 12px 14px; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.invoice-total { text-align: right; }
.invoice-total-row { display: flex; justify-content: flex-end; gap: 40px; padding: 8px 0; }
.invoice-grand-total { font-size: 1.2rem; font-weight: 700; border-top: 2px solid #111; padding-top: 8px; }
.invoice-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; font-size: 0.8rem; color: #666 !important; }
