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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f3f4f6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

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

.logo-img {
  height: 34px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #f97316, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease-out;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

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

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.9fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: #4b5563;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  box-shadow: 0 18px 45px rgba(239, 68, 68, 0.4);
}

.btn.ghost {
  background: transparent;
  color: #111827;
  border: 1px solid #d1d5db;
}

.hero-panel-card {
  background: #020617;
  border-radius: 1.4rem;
  padding: 1.7rem 1.5rem;
  color: #e5e7eb;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.7);
}

.hero-panel-card h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.hero-panel-card ul {
  padding-left: 1.1rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.section {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: #6b7280;
}

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

.card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.nema-products {
  padding: 3rem 0 3.5rem;
}

.nema-products__header {
  margin-bottom: 1.75rem;
}

.nema-products__header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.nema-products__header p {
  margin: 0;
  color: #6b7280;
}

.nema-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.nema-card {
  background: #ffffff;
  border-radius: 1.3rem;
  padding: 1.2rem 1.1rem 1.3rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nema-card__thumb {
  background: #f9fafb;
  border-radius: 0.9rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nema-card h3 {
  margin: 0;
  font-size: 0.98rem;
}

.nema-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #4b5563;
}

.nema-card__actions {
  margin-top: auto;
  padding-top: 0.35rem;
}

.nema-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: #1d4ed8;
}

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.75rem 0;
  margin-top: 2rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.footer-links a {
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.mini-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

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

.form-row label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 0.6rem;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  padding: 0.45rem 0.55rem;
  font-size: 0.85rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #6b7280;
}

.form-row textarea {
  resize: vertical;
}

.mini-form .btn.primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
