:root {

  --bg-main: #0a192f;

  --bg-card: #112240;

  --accent: #38bdf8;

  --text-main: #e5e7eb;

  --text-muted: #94a3b8;

  --border-soft: rgba(255,255,255,0.08);

}

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

html { overflow-y: scroll; }

body {

  font-family: 'Poppins', sans-serif;

  background-color: var(--bg-main);

  color: var(--text-main);

  line-height: 1.6;

}

a {

  color: var(--accent);

  text-decoration: none;

  transition: color 0.2s ease, background 0.2s ease;

}

img { max-width: 100%; height: auto; border-radius: 8px; }

/* Layout */

.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 80px 20px;

}

/* Page header sections - consistent spacing */

.container.hero,

.container.page-header {

  padding-top: 40px;

  padding-bottom: 20px;

}

.section { 
  padding-top: 16px;
  padding-bottom: 40px;
}

/* Header - CONSISTENT ACROSS ALL PAGES */

header {

  background: rgba(10, 25, 47, 0.95);

  border-bottom: 1px solid var(--border-soft);

  position: sticky;

  top: 0;

  z-index: 100;

  margin-bottom: 0;

  padding-bottom: 0;

}

.nav {

  max-width: 1200px;

  margin: 0 auto;

  padding: 10px 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.logo { height: 50px; width: auto; display: block; }

nav a {

  margin-left: 20px;

  font-weight: 500;

  padding-bottom: 4px;

}

nav a.active { border-bottom: 2px solid var(--accent); }

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

/* Buttons */

.btn {

  display: inline-block;

  background: var(--accent);

  color: #0a192f;

  padding: 10px 20px;

  border-radius: 10px;

  font-weight: 600;

  margin-top: 5px;

  margin-right: 12px;

  transition: all 0.25s ease;

}

.btn:hover { background: #7dd3fc; }

.btn.secondary {

  background: transparent;

  border: 1px solid var(--accent);

  color: var(--accent);

}

.btn.secondary:hover { background: var(--accent); color: #0a192f; }

/* Home hero only */

.hero { text-align: left; }

.hero h1 { font-size: 2.8rem; margin-bottom: 20px; }

.hero p { max-width: 650px; color: var(--text-muted); margin-bottom: 40px; }

/* Subpage header (Pricing/Services/etc.) */

.page-header {

  padding-top: 40px;

  padding-bottom: 20px;

}

.page-header h1 {

  font-size: 2.8rem;

  margin-bottom: 20px;

}

.page-subtitle {

  max-width: 800px;

  color: var(--text-muted);

  margin-bottom: 8px;

}

.pricing-note {

  font-size: 0.95rem;

  color: var(--text-muted);

  margin-top: 4px;

}

.hero-note {

  color: var(--text-muted);

  margin-top: 20px;

  margin-bottom: 24px;

}

.hero-actions {

  margin-top: 32px;

}

.hero .hero-actions + .hero-actions {

  display: none;

}

/* Grid & Cards */

.grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;

  margin-top: 16px;

}

.card {

  background: var(--bg-card);

  padding: 28px;

  border-radius: 14px;

  border: 1px solid var(--border-soft);

  transition: transform 0.25s ease, border-color 0.25s ease;

}

.card:hover { transform: translateY(-4px); border-color: var(--accent); }

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

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

.list { margin-left: 20px; line-height: 1.8; }

.note {

  margin-top: 60px;

  color: var(--text-muted);

}

/* Footer */

footer {

  border-top: 1px solid var(--border-soft);

  padding: 40px 20px;

  text-align: center;

  color: var(--text-muted);

  font-size: 0.9rem;

  margin-top: 80px;

}

footer nav { margin-bottom: 10px; }

footer a { color: var(--text-muted); margin: 0 10px; }

footer a:hover { color: var(--accent); }
/* Forms */
.contact-form {
  margin-top: 16px;
  display: block;
  flex-direction: column;
  gap: 10px;
}

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

.form-grid .full-row {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  width: 100%;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.honeypot-wrapper {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }
.form-status { min-height: 1.2em; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile */

@media (max-width: 768px) {

  .hero h1 { font-size: 2.2rem; }

  .nav { 

    flex-direction: column; 

    align-items: flex-start;

  }

  nav a { margin: 10px 10px 0 0; }

  .container { padding: 60px 20px; }

  

  .container.hero,

  .container.page-header {

    padding-top: 40px;

    padding-bottom: 20px;

  }

}
