/* ============================================================
   WebSiteVoorJou — Main Stylesheet
   Colors: Dark Navy + Electric Indigo + Cyan gradient
   ============================================================ */

:root {
  --bg:         #050B18;
  --bg-2:       #0D1526;
  --bg-card:    #111E35;
  --border:     #1E2D4A;
  --primary:    #6C63FF;
  --secondary:  #00D4FF;
  --gradient:   linear-gradient(135deg, #6C63FF 0%, #00D4FF 100%);
  --gradient-r: linear-gradient(135deg, #00D4FF 0%, #6C63FF 100%);
  --text:       #F0F4FF;
  --text-muted: #7A8FAE;
  --success:    #00E676;
  --warning:    #FFB300;
  --danger:     #FF5252;
  --bronze:     #CD7F32;
  --silver:     #A8B2C1;
  --gold:       #FFD700;
  --platinum:   #E5E4E2;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(108,99,255,0.15);
  --shadow-lg:  0 8px 48px rgba(108,99,255,0.25);
  --transition: all 0.3s 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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--text-muted); }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }

.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: 16px 0;
  background: rgba(5,11,24,0.85);
  backdrop-filter: blur(16px);
  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.4rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.navbar-nav { display: flex; gap: 32px; list-style: none; align-items: center; }
.navbar-nav a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.navbar-nav a:hover { color: var(--text); }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 16px rgba(108,99,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.6);
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(108,99,255,0.08); }
.btn-danger  { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #000; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px;
  background: radial-gradient(ellipse at 60% 50%, rgba(108,99,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,212,255,0.08) 0%, transparent 50%);
}
.hero-content { max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.3);
  color: var(--primary); padding: 6px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.15rem; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 400px; width: 100%;
}
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  animation: float 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: -1s; }
.hero-card:nth-child(3) { animation-delay: -2s; }
.hero-card:nth-child(4) { animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.hero-card h4 { font-size: 0.9rem; }
.hero-card p { font-size: 0.8rem; margin-top: 4px; }

/* ---- 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: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 40px; display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.ai-visual { text-align: center; }
.ai-visual .big-icon { font-size: 5rem; display: block; margin-bottom: 20px; }
.ai-stat { display: flex; justify-content: center; gap: 40px; margin-top: 24px; }
.ai-stat-item h3 { font-size: 2rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ai-stat-item p { font-size: 0.85rem; }

/* ---- 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(255,255,255,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: center; 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); }

/* ---- 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; }
}
@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; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { transform: translateX(-100%); transition: var(--transition); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .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; }
