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

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: #111;
  color: #f5f5f5;
}

body {
  display: flex;
  flex-direction: column;
}

/* Layout */
header {
  background: #141414;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 999px;
}

.navbar-logo span {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.navbar-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.navbar-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: #ff8c00;
  color: #111;
}

/* Main content */
main {
  flex: 1;
}

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* Hero / index */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: #ff8c00;
}

.hero-text p {
  margin-bottom: 1.5rem;
  color: #cfcfcf;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #333;
  font-size: 0.8rem;
  color: #ddd;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s;
}

.btn-primary {
  background: #ff8c00;
  color: #111;
}

.btn-primary:hover {
  background: #ffa733;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #444;
}

.btn-secondary:hover {
  background: #222;
}

/* Hero side card */
.hero-card {
  background: radial-gradient(circle at top, #ff8c0015 0, #181818 50%);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid #333;
}

.hero-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: none;
  padding-left: 0;
}

.hero-card ul li {
  margin-bottom: 0.45rem;
  color: #dcdcdc;
}

/* Sections & cards */
.section-title {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: #bdbdbd;
  margin-bottom: 1.75rem;
}

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

.card {
  background: #181818;
  border-radius: 1rem;
  padding: 1.35rem 1.35rem 1.2rem;
  border: 1px solid #262626;
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p {
  color: #cfcfcf;
  font-size: 0.95rem;
}

.card ul {
  margin-left: 1.1rem;
  margin-top: 0.35rem;
  color: #dcdcdc;
  font-size: 0.95rem;
}

/* Lists & content */
.content p {
  margin-bottom: 0.85rem;
  color: #dcdcdc;
}

.content ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: #dcdcdc;
}

.content li {
  margin-bottom: 0.4rem;
}

/* Table-like list (pricing) */
.pricing-list {
  list-style: none;
  padding-left: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #333;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2rem;
}

.contact-card {
  background: #181818;
  border-radius: 1rem;
  padding: 1.4rem;
  border: 1px solid #262626;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

/* Simple form (static – for future use with e.g. formspree) */
form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #444;
  background: #111;
  color: #f5f5f5;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background: #101010;
  border-top: 1px solid #252525;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #a9a9a9;
}

footer a {
  color: #ff8c00;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .navbar-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
