/* ZenaConsult – clean standalone layout */
/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f6f9;
  color: #1c2830;
  line-height: 1.6;
}

/* Layout */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 2rem 0;
}

.section--dark {
  background: #111827;
  color: #f9fafb;
}

.section--light {
  background: #ffffff;
}

/* Header / Nav */

.site-header {
  background: #0f172a;
  color: #f9fafb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav__title {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav__subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

.nav__links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav__link {
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__link:hover {
  color: #f97316;
  border-color: #f97316;
}

.nav__link--primary {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #f97316;
  color: #f97316;
  font-weight: 600;
}

.nav__link--primary:hover {
  background: #f97316;
  color: #111827;
}

/* Mobile nav */

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav__toggle span {
  width: 20px;
  height: 2px;
  background: #e5e7eb;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #020617;
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid #111827;
  }

  .nav__toggle {
    display: flex;
  }
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.hero__gradient {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1rem;
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.hero__meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.75rem;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #f97316;
  color: #111827;
  border-color: #f97316;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn--primary:hover {
  background: #ea580c;
  border-color: #ea580c;
}

.btn--ghost {
  background: transparent;
  color: #111827;
  border-color: #cbd5f5;
}

.btn--ghost:hover {
  border-color: #f97316;
  color: #f97316;
}

/* Hero card */

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
  border: 1px solid #e5e7eb;
}

.hero-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.hero-card__tagline {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1.1rem;
}

.hero-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: #4b5563;
}

.hero-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-card__item-icon {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

/* Section headings */

.section__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 36rem;
}

/* Service cards */

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

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.service-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.3rem;
}

.service-card__title {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #111827;
}

.service-card__text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.service-card__meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* “Stats” strip */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.stat {
  min-width: 140px;
}

.stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
}

.stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

/* Clients strip */

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.clients-strip__logo {
  height: 38px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
}

/* Split layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Lists */

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

ul.clean-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

ul.clean-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f97316;
}

/* Contact */

.contact-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-item strong {
  display: inline-block;
  width: 80px;
  color: #374151;
}

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

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.map-frame {
  border: 0;
  border-radius: 1rem;
  width: 100%;
  min-height: 260px;
}

/* Forms */

.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.form__field {
  flex: 1 1 160px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.form__input,
.form__textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  min-height: 44px;
}

.form__textarea {
  min-height: 120px;
}

.form__input:focus,
.form__textarea:focus {
  outline: 2px solid #f97316;
  outline-offset: 1px;
  border-color: #f97316;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.6rem 0;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f97316;
}