@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --accent: #0ea5e9;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; display: block; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem,5vw,3.25rem); }
h2 { font-size: clamp(1.5rem,3vw,2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { color: var(--muted); }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; color: var(--dark);
}
.navbar-brand span { color: var(--primary); }
.navbar-brand .logo-badge {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  color: white; font-size: .9rem; font-weight: 800;
}
.navbar-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-nav a {
  padding: 8px 14px; border-radius: 8px; font-size: .875rem;
  font-weight: 500; color: var(--text); transition: all var(--transition);
}
.navbar-nav a:hover { background: var(--bg); color: var(--primary); }
.navbar-nav a.active { color: var(--primary); background: #eff6ff; }
.navbar-cta { margin-left: 8px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius); font-size: .9rem;
  font-weight: 600; cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap; font-family: inherit; text-decoration: none; line-height: 1;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(30,64,175,.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--bg); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #059669; color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-sm { padding: 7px 16px; font-size: .8125rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-icon { padding: 10px; }
.btn-loading { position: relative; }
.btn-loading .btn-text { visibility: hidden; }
.btn-loading::after {
  content: ''; position: absolute;
  width: 16px; height: 16px; border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-content { max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #eff6ff; color: var(--primary); border: 1px solid #bfdbfe;
  border-radius: 50px; padding: 5px 14px; font-size: .8125rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.hero h1 { margin-bottom: 16px; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p.lead { font-size: 1.125rem; color: var(--muted); margin-bottom: 40px; max-width: 560px; }

/* ── Search Box ── */
.search-box {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 8px 8px 20px;
  display: flex; align-items: center; gap: 8px;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  max-width: 620px;
}
.search-box:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(59,130,246,.1), var(--shadow-lg);
}
.search-box input {
  flex: 1; border: none; outline: none; font-size: 1rem;
  font-family: inherit; color: var(--text); background: transparent;
}
.search-box input::placeholder { color: var(--muted); }
.search-btn { flex-shrink: 0; }

.search-results {
  margin-top: 16px; max-width: 620px;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  overflow: hidden;
}
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  transition: background var(--transition); cursor: pointer;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg); }
.search-result-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.icon-available { background: #d1fae5; color: var(--success); }
.icon-taken { background: #fee2e2; color: var(--danger); }
.icon-pending { background: #fef3c7; color: var(--warning); }
.search-result-title { font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.search-result-subtitle { font-size: .8125rem; color: var(--muted); }
.search-result-badge {
  margin-left: auto; flex-shrink: 0;
  padding: 4px 10px; border-radius: 50px; font-size: .75rem; font-weight: 600;
}
.badge-available { background: #d1fae5; color: #065f46; }
.badge-taken { background: #fee2e2; color: #991b1b; }
.badge-pending { background: #fef3c7; color: #92400e; }

/* ── Stats Strip ── */
.stats-strip { background: var(--dark); padding: 24px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 8px 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 1.75rem; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── Cards ── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-header { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
  background: #eff6ff; color: var(--primary);
}

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); cursor: pointer; position: relative;
}
.service-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card.featured { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary); }
.service-card .badge-featured {
  position: absolute; top: -12px; left: 24px;
  background: var(--primary); color: white; font-size: .75rem; font-weight: 700;
  padding: 3px 12px; border-radius: 50px;
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-name { font-weight: 700; font-size: 1.0625rem; color: var(--dark); margin-bottom: 6px; }
.service-desc { font-size: .875rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.service-price { font-size: 1.375rem; font-weight: 800; color: var(--primary); }
.service-price small { font-size: .8125rem; font-weight: 500; color: var(--muted); }
.service-days { font-size: .8125rem; color: var(--muted); margin-top: 4px; }

/* ── Registration Wizard ── */
.wizard-progress {
  display: flex; align-items: center; margin-bottom: 40px;
}
.wizard-step {
  display: flex; align-items: center; flex: 1;
}
.wizard-step:last-child { flex: 0; }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; transition: all .3s;
  border: 2px solid var(--border); background: white; color: var(--muted);
}
.step-circle.active { border-color: var(--primary); background: var(--primary); color: white; }
.step-circle.completed { border-color: var(--success); background: var(--success); color: white; }
.step-line { flex: 1; height: 2px; background: var(--border); transition: background .3s; }
.step-line.active { background: var(--success); }
.step-label { font-size: .75rem; font-weight: 600; color: var(--muted); margin-top: 6px; white-space: nowrap; }
.step-label.active { color: var(--primary); }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeInUp .25s ease; }

/* ── Form Styles ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label .required { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .9375rem; font-family: inherit;
  color: var(--text); background: white; transition: all var(--transition); outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.form-control.error { border-color: var(--danger); }
.form-control::placeholder { color: #94a3b8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-hint { font-size: .8125rem; color: var(--muted); margin-top: 4px; }
.form-error { font-size: .8125rem; color: var(--danger); margin-top: 4px; display: none; }
.form-control.error + .form-error { display: block; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Addon Cards ── */
.addon-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.addon-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; cursor: pointer; transition: all var(--transition);
  position: relative; user-select: none;
}
.addon-card:hover { border-color: var(--primary-light); background: #f8fbff; }
.addon-card.selected { border-color: var(--primary); background: #eff6ff; }
.addon-card input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.addon-check {
  position: absolute; top: 16px; right: 16px;
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.addon-card.selected .addon-check { background: var(--primary); border-color: var(--primary); }
.addon-check::after { content: '✓'; color: white; font-size: .75rem; font-weight: 700; opacity: 0; }
.addon-card.selected .addon-check::after { opacity: 1; }
.addon-icon { font-size: 1.75rem; margin-bottom: 10px; }
.addon-name { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.addon-desc { font-size: .8125rem; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
.addon-price { font-weight: 800; color: var(--primary); font-size: 1.125rem; }
.addon-price small { font-weight: 500; color: var(--muted); font-size: .8125rem; }

/* ── Order Summary ── */
.summary-box {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 88px;
}
.summary-title { font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.summary-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-item:last-of-type { border-bottom: none; }
.summary-item-name { font-size: .875rem; color: var(--text); }
.summary-item-price { font-weight: 600; color: var(--dark); font-size: .875rem; white-space: nowrap; margin-left: 12px; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 2px solid var(--border); margin-top: 8px; }
.summary-total-label { font-weight: 700; color: var(--dark); }
.summary-total-amount { font-weight: 800; font-size: 1.375rem; color: var(--primary); }

/* ── Payment Options ── */
.payment-tabs { display: flex; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.payment-tab {
  flex: 1; padding: 12px 16px; text-align: center; cursor: pointer;
  font-weight: 600; font-size: .875rem; color: var(--muted);
  transition: all var(--transition); border: none; background: transparent; font-family: inherit;
}
.payment-tab.active { background: var(--primary); color: white; }

/* ── Alerts ── */
.alert {
  padding: 14px 18px; border-radius: var(--radius); font-size: .875rem;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px;
}
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--bg); padding: 12px 16px; text-align: left;
  font-size: .8125rem; font-weight: 700; color: var(--muted); text-transform: uppercase;
  letter-spacing: .04em; border-bottom: 1px solid var(--border); white-space: nowrap;
}
tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: .875rem; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 50px; font-size: .75rem; font-weight: 700;
}
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-green { background: #d1fae5; color: #065f46; }
.badge-yellow { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-gray { background: #f1f5f9; color: #475569; }
.badge-purple { background: #ede9fe; color: #5b21b6; }

/* ── Status Badges ── */
.status-pending { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-rejected { background: #fee2e2; color: #991b1b; }
.status-paid { background: #d1fae5; color: #065f46; }
.status-unpaid { background: #fee2e2; color: #991b1b; }

/* ── Track page ── */
.track-box {
  max-width: 540px; margin: 0 auto;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow);
}
.track-result { margin-top: 32px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item::before {
  content: ''; position: absolute; left: -26px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--border); border: 2px solid white;
  box-shadow: 0 0 0 2px var(--border);
}
.timeline-item.done::before { background: var(--success); box-shadow: 0 0 0 2px var(--success); }
.timeline-item.active::before { background: var(--primary); box-shadow: 0 0 0 2px var(--primary); animation: pulse 1.5s infinite; }
.timeline-label { font-weight: 600; color: var(--dark); font-size: .875rem; }
.timeline-date { font-size: .8125rem; color: var(--muted); margin-top: 2px; }

/* ── Invoice ── */
.invoice-wrap { max-width: 800px; margin: 0 auto; background: white; padding: 48px; }
.invoice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.invoice-logo { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.invoice-logo span { color: var(--primary); }
.invoice-meta { text-align: right; }
.invoice-number { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.invoice-status-badge { display: inline-flex; margin-top: 6px; }
.invoice-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.invoice-addr-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.invoice-addr-name { font-weight: 700; color: var(--dark); }
.invoice-table th { background: #0f172a !important; color: white !important; }
.invoice-totals { margin-top: 0; border-top: none; }
.invoice-totals td { border-bottom: 1px solid var(--border); }
.invoice-total-row td { font-weight: 800 !important; font-size: 1rem !important; background: #f8fafc; }
.invoice-notes { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: .8125rem; color: var(--muted); }
.invoice-bank { background: var(--bg); border-radius: var(--radius); padding: 20px; margin-top: 24px; }
.bank-details { display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; font-size: .875rem; }
.bank-details dt { font-weight: 700; color: var(--dark); }
.bank-details dd { color: var(--muted); }

/* ── How it works ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: white; font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-title { font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: .875rem; color: var(--muted); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.stars { color: #f59e0b; margin-bottom: 12px; font-size: .9375rem; }
.testimonial-text { font-size: .9375rem; color: var(--text); line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: .875rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .875rem; color: var(--dark); }
.author-role { font-size: .8125rem; color: var(--muted); }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 1.375rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer h4 { color: white; font-size: .875rem; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); }
.footer ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: .8125rem; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.trust-badges { display: flex; gap: 12px; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08); border-radius: 6px; padding: 6px 12px; font-size: .8125rem; color: rgba(255,255,255,.7); }

/* ── Loaders ── */
.loader {
  width: 18px; height: 18px; border: 2.5px solid var(--border);
  border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite;
  display: inline-block;
}
.loader-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px); z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.loader-overlay.active { opacity: 1; pointer-events: all; }
.loader-lg {
  width: 44px; height: 44px; border: 4px solid var(--border);
  border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite;
}
.loader-text { font-weight: 600; color: var(--dark); }
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
  border-radius: 6px; display: block;
}

/* ── Name Suggest Widget ── */
.suggest-widget {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-top: 24px;
}
.suggest-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.suggest-tag {
  padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid var(--primary-light); color: var(--primary);
  font-size: .8125rem; font-weight: 600; cursor: pointer; transition: all var(--transition);
  background: white;
}
.suggest-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ── Modals ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: var(--radius-lg); width: 100%; max-width: 520px;
  box-shadow: var(--shadow-lg); transform: translateY(16px); transition: transform .25s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--border); }
.modal-title { font-weight: 700; font-size: 1.125rem; }
.modal-close { width: 32px; height: 32px; border-radius: 8px; border: none; background: var(--bg); cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.modal-close:hover { background: var(--border); }
.modal-body { padding: 28px; }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Toast ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column-reverse; gap: 10px; }
.toast {
  background: var(--dark); color: white; padding: 14px 18px;
  border-radius: var(--radius); font-size: .875rem; font-weight: 500;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  animation: slideUp .3s ease; min-width: 280px; max-width: 380px;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); color: var(--dark); }

/* ── Section headers ── */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--primary); margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; letter-spacing: -.02em; }
.section-subtitle { font-size: 1.0625rem; color: var(--muted); max-width: 540px; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Pricing Cards ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition); position: relative;
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--primary); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white; font-size: .8125rem; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.price-amount { font-size: 2.25rem; font-weight: 800; color: var(--dark); line-height: 1; }
.price-period { font-size: .875rem; color: var(--muted); margin-bottom: 20px; }
.price-features { list-style: none; margin: 20px 0; }
.price-features li { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: .875rem; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features .check { color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ── Misc ── */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.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} .mt-5{margin-top:48px}
.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}
.d-flex { display: flex; } .align-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1{gap:8px} .gap-2{gap:16px} .gap-3{gap:24px}

/* ── Animations ── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 2px var(--primary)} 50%{box-shadow:0 0 0 5px rgba(30,64,175,.3)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer { to{background-position:-200% 0} }
.fade-in { animation: fadeInUp .4s ease; }

/* ── Responsive ── */
@media(max-width:1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media(max-width:768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .invoice-addresses { grid-template-columns: 1fr; gap: 20px; }
  .invoice-header { flex-direction: column; gap: 16px; }
  .invoice-meta { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .invoice-wrap { padding: 24px; }
}

@media(max-width:480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 12px 8px; }
}

/* ── Mobile nav ── */
.mobile-nav {
  display: none; background: white; border-top: 1px solid var(--border);
  padding: 12px 24px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
