/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: #111827;
  background: #0b1020;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10, 16, 30, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand-logo-glow {
  position: relative;
}

.brand-logo-glow::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 0, rgba(250, 204, 21, 0.4), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(56, 189, 248, 0.35), transparent 60%);
  opacity: 0.9;
  z-index: -1;
  filter: blur(4px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.94rem;
  color: #cbd5f5;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #facc15, #22c55e);
  border-radius: 999px;
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 60%);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.nav-cta span {
  color: #a5b4fc;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 1.4rem;
}

/* Hero / main content */
main {
  flex: 1;
}

.hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at 120% 0, rgba(34, 197, 94, 0.13), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(2.1rem, 3.1vw + 1rem, 3.4rem);
  line-height: 1.08;
  color: #f9fafb;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.hero-body {
  font-size: 0.97rem;
  color: #cbd5f5;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.95),
    rgba(30, 64, 175, 0.92)
  );
  color: #e5e7eb;
  font-size: 0.95rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #facc15, #22c55e);
  color: #111827;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.hero-note {
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.9),
    0 0 25px rgba(56, 189, 248, 0.4);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  font-size: 0.9rem;
}

.hero-card:nth-child(2) {
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.2), rgba(15, 23, 42, 0.98));
}

.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.4rem;
}

.hero-card-main {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-card-sub {
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 1.5rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.section-intro {
  font-size: 0.96rem;
  color: #cbd5f5;
  max-width: 40rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.87rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #facc15;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.card {
  padding: 1.1rem 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.32), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  font-size: 0.92rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card ul {
  list-style: none;
  margin-top: 0.3rem;
}

.card li {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.card li::before {
  content: "•";
  color: #facc15;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2rem;
}

.contact-highlight {
  padding: 1.1rem 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  font-size: 0.92rem;
}

.step-list {
  list-style: none;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.step-list li {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.step-badge {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #e5e7eb;
}

.contact-form {
  padding: 1.1rem 1.1rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.97);
}

.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 0.25rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(250, 204, 21, 0.7);
  outline-offset: 1px;
}

.field small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Lists / typography */
.copy-block {
  max-width: 44rem;
  font-size: 0.96rem;
  color: #cbd5f5;
}

.page-hero-image {
  margin-top: 1.8rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  max-width: 520px;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 18px rgba(56, 189, 248, 0.35);
}

.page-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.copy-block p + p {
  margin-top: 0.8rem;
}

.copy-list {
  list-style: none;
  margin-top: 0.7rem;
}

.copy-list li {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.copy-list li::before {
  content: "•";
  color: #facc15;
}

.check-list li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 600;
}

.muted {
  color: #9ca3af;
}

/* Areas grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.area-pill {
  padding: 0.55rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(10, 16, 30, 0.98);
  color: #9ca3af;
  font-size: 0.8rem;
}

.footer-inner {
  padding: 1rem 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-main {
  max-width: 52rem;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  align-items: center;
}

.footer-meta span {
  font-size: 0.78rem;
}

.footer-link {
  color: #a5b4fc;
}
.footer-link:hover {
  color: #e5e7eb;
}

/* Utility classes */
.mt-sm {
  margin-top: 0.6rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.4rem;
}

.phone-link {
  font-weight: 600;
  color: #e5e7eb;
}

.phone-link span {
  color: #facc15;
}

.tagline {
  font-size: 0.88rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.4rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

