:root {
  --bg: #0b0f14;
  --panel: #111827;
  --accent: #4f46e5;
  --accent-2: #14b8a6;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --white: #ffffff;
}

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

/* Splash Screen */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.splash-logo {
  max-width: 60vw;
  max-height: 40vh;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #111827 0%, #0b0f14 45%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav a {
  margin-left: 18px;
  font-weight: 500;
  color: var(--muted);
}

nav a:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(79,70,229,0.3); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-sm { padding: 8px 14px; font-size: 0.9rem; }

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead { color: var(--muted); margin-bottom: 24px; }

.cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats span { display: block; font-weight: 700; font-size: 1.1rem; }

.hero-stats small { color: var(--muted); }

.hero-card .glass {
  background: rgba(17,24,39,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-card h3 { margin-bottom: 14px; }

.hero-card ul { list-style: none; margin-bottom: 16px; }

.hero-card li { margin: 8px 0; color: var(--muted); }

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,70,229,0.2);
  color: var(--white);
  font-size: 0.85rem;
}

.section-heading { text-align: center; margin-bottom: 36px; }

.section-heading h2 { font-size: 2rem; margin-bottom: 10px; }

.section-heading p { color: var(--muted); }

.services, .about, .contact {
  padding: 70px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  background: var(--panel);
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover { transform: translateY(-6px); border-color: rgba(79,70,229,0.5); }

.card h3 { margin-bottom: 10px; }

.card p { color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-panel {
  background: linear-gradient(135deg, rgba(79,70,229,0.25), rgba(20,184,166,0.2));
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
}

.about-panel ul { margin-top: 12px; padding-left: 16px; }

.about-panel li { margin-bottom: 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-info p { margin-top: 8px; color: var(--muted); }

.contact-form {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  display: grid;
  gap: 14px;
}

.contact-form label { font-size: 0.9rem; color: var(--muted); display: grid; gap: 6px; }

input, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0f172a;
  color: var(--text);
}

.site-footer {
  padding: 30px 0 40px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 720px) {
  nav a { margin-left: 10px; }
  .hero { padding-top: 70px; }
  .site-header { position: static; }
}

/* Service card pricing */
.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c0392b;
  margin: 0.75rem 0;
}
.card .btn-sm {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.card .btn-sm:hover { background: #a93226; }
