/* Reset + base */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  line-height: 1.6;
}
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark {
  height: 28px;
}
.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.4px;
  color: #0f172a;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 2.2rem;
}
.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: #0f172a;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.2rem;
  max-width: 520px;
}
.hero-illustration {
  max-width: 100%;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: -4rem;
}
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.service-card img {
  max-width: 120px;
  margin-bottom: 1rem;
}

/* Pages */
.about {
  margin: 4rem 0;
}
.simple-page {
  min-height: 50vh;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  color: #475569;
  font-size: 0.9rem;
}
``
/* Secondary page hero */
.page-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #ffffff;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.page-hero p {
  max-width: 600px;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* Page content panels */
.page-panel {
  background: #ffffff;
  padding: 2.5rem;
  margin-top: -3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Forms */
form {
  max-width: 620px;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

input,
textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  background: #1e3a8a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #0f172a;
}
/* Footer layout */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 500;
  color: #334155;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
/* Space footer policy links */
.footer-links a:not(:last-child) {
  margin-right: 1.5rem;
}
.cta-button {
  display: inline-block;
  background: #1e3a8a;
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.cta-button:hover {
  background: #0f172a;
}

