:root {
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent: #60a5fa;
  --card-bg: #ffffff;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  background: var(--bg-dark);
  padding: 1rem 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.logo-main {
  color: #e5e7eb;
}

.logo-sub {
  color: var(--accent);
  margin-left: 0.25rem;
  font-weight: 400;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #e5e7eb;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: #cbd5f5;
}

.coming-soon {
  color: var(--accent);
  font-weight: 500;
}

.services {
  padding: 4rem 0;
}

.services h2,
.about h2,
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.card h3 {
  margin-top: 0;
  color: var(--bg-dark);
}

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

.about {
  background: #ffffff;
  padding: 4rem 0;
}

.about p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
}

.contact {
  padding: 4rem 0;
  text-align: center;
}

.contact-email {
  margin-top: 1rem;
}

.site-footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* ============================= */
/* Contact Form Styling */
/* ============================= */

.contact-form {
  max-width: 520px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.3);
}

.form-actions {
  margin-top: 1.75rem;
}

.form-actions button {
  background: var(--bg-dark);
  color: #e5e7eb;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-actions button:hover {
  background: #020617;
}

/* hide honeypot completely */
input[name="company"] {
  display: none;
}

