/* hev.az — 2026 premium landing */
:root {
  --bg: #f8f7f4;
  --bg-muted: #f0eeea;
  --surface: #ffffff;
  --text: #141418;
  --muted: #5c5c66;
  --muted2: #7a7a85;
  --border: #e8e6e1;
  --border-strong: #d4d1ca;
  --accent: #0d6b63;
  --accent-hover: #0f857b;
  --accent-soft: rgba(13, 107, 99, 0.09);
  --accent-glow: rgba(13, 107, 99, 0.22);
  --navy: #12121a;
  --navy-soft: #1e1e28;
  --warm: #c4a574;
  --warm-soft: rgba(196, 165, 116, 0.14);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 1px 2px rgba(18, 18, 26, 0.04);
  --shadow-md: 0 12px 40px rgba(18, 18, 26, 0.08);
  --shadow-card: 0 4px 20px rgba(18, 18, 26, 0.05);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --maxw: 1080px;
  --header-break: 960px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

::selection {
  background: rgba(15, 118, 110, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text);
  font-feature-settings: "kern" 1, "liga" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 107, 99, 0.07), transparent),
    radial-gradient(circle at 100% 0%, rgba(196, 165, 116, 0.06), transparent 40%);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

.container {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(232, 230, 225, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  flex-wrap: nowrap;
  min-height: 3.25rem;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover {
  text-decoration: none;
  color: var(--accent);
}
.logo span {
  color: var(--accent);
  font-weight: 700;
}

.nav-main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.nav-main a {
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.nav-main a:hover,
.nav-main a.is-active {
  color: var(--text);
  background: var(--accent-soft);
  text-decoration: none;
}

@media (min-width: 960px) and (max-width: 1120px) {
  .nav-main a {
    font-size: 0.8125rem;
    padding: 0.4rem 0.5rem;
  }
  .logo {
    font-size: 1.25rem;
  }
  .btn--header {
    padding: 0.55rem 0.95rem;
    font-size: 0.85rem;
  }
}

.header-cta {
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch {
  position: relative;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border, #e8e6e1);
  border-radius: 8px;
  background: var(--bg, #fff);
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.lang-switch__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-switch__label {
  display: none;
}

.lang-switch__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 11rem;
  max-height: 16rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border, #e8e6e1);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(18, 18, 26, 0.12);
  z-index: 200;
}

.lang-switch.is-open .lang-switch__menu {
  display: block;
}

.lang-switch__menu a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.lang-switch__menu a:hover,
.lang-switch__menu a.is-active {
  background: var(--accent-soft);
  color: var(--text);
  text-decoration: none;
}

html[dir='rtl'] .site-header__inner {
  flex-direction: row-reverse;
}

html[dir='rtl'] .nav-main {
  flex-direction: row-reverse;
}

html[dir='rtl'] .lang-switch__menu {
  right: auto;
  left: 0;
}

html[dir='rtl'] .breadcrumb,
html[dir='rtl'] .prose,
html[dir='rtl'] .page-section {
  text-align: right;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent) 0%, #0a5c55 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px var(--accent-glow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.btn--primary:hover {
  background: linear-gradient(145deg, var(--accent-hover) 0%, var(--accent) 100%);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px var(--accent-glow);
}

.btn--outline {
  background: var(--surface);
  color: var(--text) !important;
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.btn--outline.btn--on-dark {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline.btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.btn--ghost {
  background: transparent;
  color: var(--muted) !important;
  border: 1px dashed var(--border);
}
.btn--ghost:hover {
  color: var(--text) !important;
  border-color: var(--accent);
}

.btn--header {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(18, 18, 26, 0.15);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.btn--header:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--accent-glow);
}

.btn--gold {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  background: transparent;
  border-bottom: none;
  overflow: hidden;
}

.hero--home {
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 40%, rgba(13, 107, 99, 0.09), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(196, 165, 116, 0.11), transparent 38%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

.hero__layout {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero__inner {
  max-width: 580px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(13, 107, 99, 0.12);
  border-radius: 999px;
}

.hero__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 107, 99, 0.2);
}

.hero h1,
.hero--home h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--navy);
  max-width: 14ch;
}

.hero__lead {
  margin: 0 0 1.65rem;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.hero__facts li::before {
  content: none;
}

.hero__panel {
  display: grid;
  gap: 0.85rem;
}

.hero-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-stat__val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stat__val span {
  color: var(--accent);
}

.hero-stat__lbl {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted2);
}

.hero-stat--accent {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-color: transparent;
  color: #fff;
}

.hero-stat--accent .hero-stat__val {
  color: #fff;
}

.hero-stat--accent .hero-stat__val span {
  color: #7eece0;
}

.hero-stat--accent .hero-stat__lbl {
  color: rgba(255, 255, 255, 0.65);
}

.section-eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Page hero (daxili səhifələr) */
.page-hero {
  padding: 2.5rem 0 2.75rem;
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
}

.page-hero h1::after {
  display: none;
}

.page-hero .lead {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1rem;
}

/* Sections */
.page-section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

.page-section:last-of-type {
  border-bottom: none;
}

.page-section--muted {
  background: var(--bg-muted);
}

.page-section--cta {
  padding-bottom: 3.5rem;
}

.page-section--alt {
  background: var(--bg-muted);
}

.page-section--topics {
  background: var(--surface);
}

.page-section--blast {
  background: var(--surface);
}

.page-section--invert {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
}
.page-section--invert .section-head h2 {
  color: #fff;
}
.page-section--invert .section-head p,
.page-section--invert .prose--muted,
.page-section--invert .seo-intro {
  color: rgba(255, 255, 255, 0.75);
}
.page-section--invert a:not(.btn) {
  color: #99f6e4;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 56ch;
}

/* Grid & cards */
.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card--service {
  position: relative;
  overflow: hidden;
}

.card--service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.card--service:hover::before {
  opacity: 1;
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  background: var(--accent-soft);
  border-radius: 12px;
  line-height: 1;
}

.card--service .card__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--warm);
  margin-bottom: 0.35rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}
.card h3 a:hover {
  color: var(--accent);
  text-decoration: none;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.card__link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.card__link:hover {
  text-decoration: underline;
}

.card__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.card--topic h3 {
  margin-top: 0;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  counter-increment: step;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.steps__item:hover {
  border-color: rgba(13, 107, 99, 0.25);
  box-shadow: var(--shadow-md);
}

.steps__item strong::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-right: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  vertical-align: middle;
}
.steps__item strong {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.steps__item span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Product band */
.band {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2832 50%, var(--navy-soft) 100%);
  color: #fff;
  padding: 3rem 0;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(13, 107, 99, 0.35), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(196, 165, 116, 0.15), transparent 45%);
  pointer-events: none;
}

.band__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.band__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
}

.band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
}

.band__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 48ch;
}

.band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Link grid */
.link-grid {
  display: grid;
  gap: 0.5rem 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}

.link-grid a::after {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.link-grid a:hover {
  color: var(--accent);
  border-color: rgba(13, 107, 99, 0.3);
  transform: translateX(2px);
  text-decoration: none;
}

.link-grid a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

/* CTA box */
.cta-box {
  text-align: center;
  padding: 2.75rem 2rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-muted) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.cta-box p {
  margin: 0 auto 1.5rem;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.cta-box .hero__actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Prose */
.prose {
  max-width: 68ch;
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.prose h3 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.prose p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.prose ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.prose--muted,
.seo-intro {
  color: var(--muted);
}

.action-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.code-inline {
  font-size: 0.88em;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  font-family: ui-monospace, monospace;
}

/* Stats (legacy pages) */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted2);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--surface);
}

.faq-item summary {
  padding: 0.9rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
  background: var(--bg-muted);
}

.faq-item p {
  margin: 0;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card h2 {
  font-size: 1.25rem;
  margin-top: 0;
  color: var(--navy);
}

.contact-email-big {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.65rem 0 1rem;
}

.contact-email-big a {
  color: var(--accent);
  word-break: break-all;
}

.contact-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted2);
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: var(--bg);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted2);
  padding: 0.85rem 0 0;
  margin-bottom: 0;
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 500;
}

/* Movzu grid */
.hub-section-title {
  margin: 1.5rem 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.movzu-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  margin-top: 1rem;
}

.movzu-card {
  display: block;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
}

.movzu-card:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.movzu-card strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.movzu-card span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

/* SEO related */
.seo-related {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.seo-related h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.seo-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 640px) {
  .seo-related ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-related a {
  font-weight: 600;
}

/* Tags & tables */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0 0;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table.simple {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.simple th,
table.simple td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table.simple th {
  background: var(--bg-muted);
  font-weight: 600;
}

table.simple tr:last-child td {
  border-bottom: none;
}

.mt-0 {
  margin-top: 0;
}

/* Topbar (legacy — gizli, köhnə səhifələr üçün minimal) */
.topbar {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.75rem;
  margin-top: 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--warm)) 1;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.site-footer a:hover {
  color: #99f6e4;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.footer-brand {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 28ch;
}

.footer-col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.35rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile nav */
@media (min-width: 960px) {
  .nav-toggle {
    display: none !important;
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 959px) {
  body.nav-open {
    overflow: hidden;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }
  .header-cta {
    grid-column: auto;
    grid-row: auto;
  }
  .nav-main {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid var(--border);
  }
  body.nav-open .nav-main {
    display: flex;
  }
  .nav-main a {
    padding: 0.65rem 0.5rem;
  }
}

.header-phone {
  display: none;
}

/* Hide legacy hero decorations */
.hero__art,
.hero__blob,
.hero__scanlines,
.hero__rings,
.hero__glow {
  display: none !important;
}

.hero__layout {
  display: block;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
  font-style: normal;
}
