/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #020617;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------
   HEADER + LOGO (NEW FULL-WIDTH VERSION)
-------------------------------------------------- */

.site-header {
  background: #000;
  border-bottom: 1px solid #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px; /* Taller banner */
}

/* LOGO takes full left space */
.logo-link {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

/* LOGO stretches perfectly to fill left side */
.logo-image {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  display: block;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #6b7bff;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.hero {
  padding: 4rem 0;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: white;
}

.hero-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
}

.eyebrow { text-transform: uppercase; font-size: 0.7rem; opacity: 0.8; }

/* --------------------------------------------------
   GENERIC DESIGN STYLES (cards, buttons, grid, etc.)
-------------------------------------------------- */

.section { padding: 4rem 0; }
.section-muted { background: #f3f4f6; }

.grid { display: grid; gap: 1.5rem; }

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.btn {
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.primary-btn {
  background: #1d4ed8;
  color: white;
}

.ghost-btn {
  border: 1px solid #9ca3af;
  color: white;
}

/* --------------------------------------------------
   CONTACT FORM
-------------------------------------------------- */

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.full-width { width: 100%; }

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.site-footer {
  background: #020617;
  color: #9ca3af;
  text-align: center;
  padding: 1.5rem 0;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 900px) {

  .header-inner {
    flex-direction: column;
    min-height: 180px;
    gap: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }
}
