/* NARMIK – Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f5f9ff 0, #eef2f7 40%, #e5e7eb 100%);
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #f9fafb;
  font-size: 18px;
  font-weight: 700;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 4px 0;
  color: #4b5563;
}

.main-nav a.active {
  color: #111827;
  font-weight: 600;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #2563eb;
}

/* Language switch */

.lang-switch {
  display: inline-flex;
  padding: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  gap: 2px;
}

.lang-switch button {
  border: none;
  background: transparent;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  color: #4b5563;
}

.lang-switch button.active {
  background: #111827;
  color: #f9fafb;
}

/* Hero (index) */

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 20px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
  color: #374151;
}

.hero-list li {
  margin-bottom: 6px;
}

.hero-list li::before {
  content: "•";
  margin-right: 6px;
  color: #2563eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease,
    color 0.1s ease;
}

.btn-primary {
  background: #2563eb;
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.03);
  color: #111827;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Logo side */

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, #f9fafb 0, #e5edff 45%, #e5e7eb 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-circle img {
  width: 68%;
  height: auto;
}

.hero-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  opacity: 0.8;
}

/* Sectors section */

.section {
  padding: 32px 0 56px;
}

.section-header {
  margin-bottom: 20px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: #6b7280;
}

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

.card {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 18px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-tag {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 4px;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-text {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.card-link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
}

/* Generic page content */

.page-hero {
  padding: 48px 0 28px;
}

.page-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 15px;
  color: #6b7280;
  max-width: 620px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

/* Features page */

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 16px 18px;
}

.feature-tag {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 13px;
  color: #6b7280;
}

/* Pricing */

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.pricing-card {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 18px 18px 20px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.pricing-chip {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}

.pricing-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-note {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.pricing-list {
  font-size: 13px;
  color: #4b5563;
  padding-left: 18px;
  margin-bottom: 14px;
}

/* About / founder */

.founder-card {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 20px 20px 18px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.2);
  text-align: center;
}

.founder-avatar-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 14px;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle, #ffffff 0, #e5edff 40%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.4);
}

.founder-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.founder-role {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.founder-text {
  font-size: 13px;
  color: #4b5563;
}

/* Contact form */

.form-card {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 13px;
  color: #374151;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 9px 10px;
  font-size: 14px;
  font-family: inherit;
  background: #f9fafb;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-side {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 18px 18px 16px;
  font-size: 14px;
  color: #4b5563;
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 18px 0 20px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(248, 250, 252, 0.9);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Helpers */

[data-lang] {
  /* JS dəyişəcək, amma flash olmasın deyə default göstəririk */
}

.muted {
  color: #9ca3af;
  font-size: 12px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    padding-top: 40px;
  }

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

  .hero-logo-wrap {
    order: -1;
    margin-bottom: 6px;
  }

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

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-title {
    font-size: 26px;
  }

  .section {
    padding-bottom: 40px;
  }
}
