* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0a0e1a; color: #e2e8f0; font-family: 'Inter', sans-serif; }

.text-gradient { background: linear-gradient(135deg, #3b82f6, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glass-panel { background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); }
.service-card { background: #111827; border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.service-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.service-img { width: 100%; height: 180px; object-fit: cover; opacity: 0.75; mix-blend-mode: screen; transition: transform 0.6s; }
.service-card:hover .service-img { transform: scale(1.05); }

/* ── Buttons ─────────────────────────────────────── */
.btn-primary { background: #fff; color: #0f172a; border: none; padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; text-decoration: none; }
.btn-primary:hover { background: rgba(255,255,255,0.9); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; text-decoration: none; }
.btn-outline:hover { background: rgba(255,255,255,0.05); }

/* ── Nav ─────────────────────────────────────────── */
.nav-link { color: #94a3b8; font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: #fff; }

/* ── Form inputs — height matches selects ────────── */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0 16px;
  height: 48px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
}
textarea.form-input { height: auto; padding: 12px 16px; display: block; }
select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-input:focus { border-color: #3b82f6; }
.form-input::placeholder { color: #475569; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: #cbd5e1; margin-bottom: 6px; }

/* ── Cards ───────────────────────────────────────── */
.stat-card { background: #0f172a; border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 32px; text-align: center; }

/* ── Testimonial cards ───────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(59,130,246,0.4); }
.testimonial-avatar-placeholder { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg,#1e40af,#0891b2); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #fff; border: 2px solid rgba(59,130,246,0.4); flex-shrink: 0; }
.stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.quote-mark { font-size: 48px; line-height: 0.5; color: #3b82f6; opacity: 0.4; font-family: Georgia, serif; }

/* ── Animations ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Misc ────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.badge-new { background: rgba(14,165,233,0.15); color: #0ea5e9; }
.badge-ip  { background: rgba(245,158,11,0.15);  color: #f59e0b; }
.badge-res { background: rgba(16,185,129,0.15);  color: #10b981; }
.success-box { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 60px 20px; text-align: center; }
.success-box.show { display: flex; }
