/* ============================================================
   HARTMAX — Premium Design System
   Industrial Precision. Refined Aesthetics.
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* Gold — Primary Accent */
  --gold: #c9a961;
  --gold-light: #dcc07a;
  --gold-dark: #a68b3e;
  --gold-50: rgba(201,169,97,0.05);
  --gold-100: rgba(201,169,97,0.10);
  --gold-150: rgba(201,169,97,0.15);
  --gold-200: rgba(201,169,97,0.20);

  /* Backgrounds */
  --bg-body: #08090e;
  --bg-primary: #0c0e16;
  --bg-secondary: #10131c;
  --bg-tertiary: #161a26;
  --bg-card: #11141d;
  --bg-card-hover: #161a26;
  --bg-elevated: #1c2030;
  --bg-input: #0e1018;

  /* Borders */
  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(255,255,255,0.10);
  --border-active: rgba(201,169,97,0.30);
  --border-gold: rgba(201,169,97,0.15);

  /* Text */
  --text-primary: #e8e6e3;
  --text-secondary: #9e9890;
  --text-muted: #5e5a55;
  --text-inverse: #08090e;

  /* Semantic */
  --success: #4ade80;
  --success-bg: rgba(74,222,128,0.08);
  --warning: #fbbf24;
  --warning-bg: rgba(251,191,36,0.08);
  --error: #f87171;
  --error-bg: rgba(248,113,113,0.08);
  --info: #60a5fa;
  --info-bg: rgba(96,165,250,0.08);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.6);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.7);
  --shadow-gold: 0 4px 30px rgba(201,169,97,0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --tr-fast: 150ms var(--ease-out);
  --tr-base: 300ms var(--ease-out);
  --tr-slow: 500ms var(--ease-out);

  /* Layout */
  --container: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --nav-height: 72px;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-toast: 600;
}


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--tr-fast); }
a:hover { color: var(--gold-light); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--gold-200); color: var(--text-primary); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl)); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }
p { color: var(--text-secondary); max-width: 65ch; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }
.text-lg { font-size: var(--text-lg); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}


/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section {
  padding: var(--sp-24) 0;
  position: relative;
}
.section--sm { padding: var(--sp-16) 0; }
.section--lg { padding: var(--sp-32) 0; }

.grid {
  display: grid;
  gap: var(--sp-6);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--col { flex-direction: column; }
.flex--gap-sm { gap: var(--sp-2); }
.flex--gap { gap: var(--sp-4); }
.flex--gap-lg { gap: var(--sp-8); }


/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-fixed);
  transition: all var(--tr-base);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,9,14,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr-base);
}
.nav.scrolled::before {
  border-bottom-color: var(--border);
}
.nav__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav__link {
  position: relative;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
}
.nav__link:hover {
  color: var(--text-primary);
  background: var(--gold-50);
}
.nav__link.active {
  color: var(--gold);
}
.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link--dropdown::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--tr-fast);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-fast);
  box-shadow: var(--shadow-lg);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
}
.nav__dropdown-item:hover {
  color: var(--text-primary);
  background: var(--gold-50);
}

/* Nav CTA */
.nav__cta {
  margin-left: var(--sp-4);
}

/* Admin nav button */
.nav__admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity var(--tr-fast), color var(--tr-fast), background var(--tr-fast);
  text-decoration: none;
  margin-left: var(--sp-2);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.nav__admin-btn:hover {
  opacity: 1;
  color: var(--gold);
  background: rgba(201,169,97,0.08);
}

/* Mobile Menu */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 10;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all var(--tr-fast);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,9,14,0.97);
  backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-secondary);
  padding: var(--sp-3) var(--sp-6);
  transition: color var(--tr-fast);
}
.nav__mobile a:hover { color: var(--gold); }


/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, var(--gold-100) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-body), transparent);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero h1 {
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero .subtitle {
  margin-bottom: var(--sp-10);
}
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: var(--sp-12);
  margin-top: var(--sp-16);
  padding-top: var(--sp-10);
  border-top: 1px solid var(--border);
}
.hero__stat-value {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* Hero variant — page header */
.hero--page {
  min-height: 40vh;
  padding-top: calc(var(--nav-height) + var(--sp-16));
  padding-bottom: var(--sp-16);
}
.hero--page::before { width: 500px; height: 500px; opacity: 0.7; }
.hero--page::after { height: 100px; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}
.breadcrumbs a {
  color: var(--text-muted);
  transition: color var(--tr-fast);
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span.sep {
  font-size: var(--text-xs);
  opacity: 0.4;
}


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.5;
}
.btn--primary {
  background: var(--gold);
  color: var(--text-inverse);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--text-inverse);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.btn--secondary:hover {
  border-color: var(--gold-200);
  color: var(--gold);
  background: var(--gold-50);
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-4);
}
.btn--ghost:hover {
  color: var(--gold);
  background: var(--gold-50);
}
.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}
.btn--sm {
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
}
.btn--full { width: 100%; }
.btn--danger {
  background: var(--error);
  color: white;
  border-color: var(--error);
}
.btn--danger:hover { opacity: 0.9; }
.btn--success {
  background: var(--success);
  color: var(--text-inverse);
  border-color: var(--success);
}
.btn i { width: 16px; height: 16px; }


/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: all var(--tr-base);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card--gold:hover {
  border-color: var(--gold-200);
  box-shadow: var(--shadow-gold);
}
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-5);
  color: var(--gold);
}
.card__icon i { width: 22px; height: 22px; }
.card h4 {
  margin-bottom: var(--sp-3);
}
.card p {
  font-size: var(--text-sm);
  line-height: 1.7;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-top: var(--sp-5);
  transition: gap var(--tr-fast);
}
.card__link:hover { gap: 10px; }

/* Feature card (horizontal) */
.card--horizontal {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}
.card--horizontal .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
}
.stat-card__value {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}
.stat-card__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}


/* === SECTION HEADER === */
.section-header {
  max-width: 600px;
  margin-bottom: var(--sp-12);
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header h2 {
  margin-bottom: var(--sp-4);
}
.section-header p {
  margin: 0 auto;
}


/* === DIVIDER === */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin: var(--sp-16) 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}


/* === PROCESS / TIMELINE === */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}
.process__step {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-6) 0;
  position: relative;
}
.process__number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  z-index: 1;
}
.process__step:hover .process__number {
  background: var(--gold-100);
  border-color: var(--gold-200);
}
.process__content h4 { margin-bottom: var(--sp-2); }
.process__content p { font-size: var(--text-sm); }


/* === FORMS === */
.form-group {
  margin-bottom: var(--sp-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-sm);
  transition: all var(--tr-fast);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-200);
  box-shadow: 0 0 0 3px var(--gold-50);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235e5a55' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.form-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}
.form-error {
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--sp-1);
  display: none;
}
.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: var(--error);
}
.form-group.error .form-error {
  display: block;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}


/* === TABLES === */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-4) var(--sp-5);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.table td {
  font-size: var(--text-sm);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255,255,255,0.015); }
.table td strong { color: var(--text-primary); }


/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge--gold {
  background: var(--gold-100);
  color: var(--gold);
  border: 1px solid var(--gold-200);
}
.badge--success {
  background: var(--success-bg);
  color: var(--success);
}
.badge--warning {
  background: var(--warning-bg);
  color: var(--warning);
}
.badge--error {
  background: var(--error-bg);
  color: var(--error);
}
.badge--info {
  background: var(--info-bg);
  color: var(--info);
}
.badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}


/* === USP BANNER === */
.usp-banner {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10) var(--sp-12);
  position: relative;
  overflow: hidden;
}
.usp-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-100) 0%, transparent 70%);
  pointer-events: none;
}
.usp-banner blockquote {
  position: relative;
  z-index: 1;
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  padding-left: var(--sp-6);
  border-left: 2px solid var(--gold);
}
.usp-banner blockquote em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}


/* === INDUSTRIES LIST === */
.industry-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--tr-base);
  text-decoration: none;
  color: var(--text-primary);
}
.industry-link:hover {
  border-color: var(--gold-200);
  transform: translateX(4px);
  color: var(--text-primary);
}
.industry-link__left {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.industry-link__rank {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 800;
  background: var(--gold-100);
  color: var(--gold);
}
.industry-link__name {
  font-weight: 600;
}
.industry-link__score {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
}


/* === FOOTER === */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer__brand p {
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
  max-width: 320px;
}
.footer__heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--tr-fast);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--gold); }
.footer__admin-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  opacity: 0.4;
  font-size: var(--text-xs);
  text-decoration: none;
  transition: opacity var(--tr-fast), color var(--tr-fast);
}
.footer__admin-link:hover { opacity: 1; color: var(--gold); }

/* === ADMIN LOGIN MODAL (inline from main site) === */
.admin-login-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.admin-login-overlay.open { opacity: 1; visibility: visible; }
.admin-login-modal {
  position: relative; width: 100%; max-width: 420px; margin: 24px;
  padding: 48px 40px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-login-overlay.open .admin-login-modal {
  transform: translateY(0) scale(1);
}
.admin-login-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 24px; cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all var(--tr-fast);
}
.admin-login-close:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.admin-login-header {
  text-align: center; margin-bottom: 28px;
}
.admin-login-header svg { margin-bottom: 12px; }
.admin-login-header h3 {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 6px;
}
.admin-login-header p {
  color: var(--text-muted); font-size: 0.85rem;
}
.admin-login-error {
  display: none; padding: 12px 16px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--radius-md);
  color: var(--error); font-size: 0.85rem; margin-bottom: 16px;
  text-align: center;
}
.admin-login-error.shake {
  animation: shake 0.5s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Nav logo img */
.nav__logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 32px; width: auto; transition: filter var(--tr-fast); }
.nav__logo:hover img { filter: brightness(1.2); }

/* Footer cities */
.footer__cities {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--sp-8);
}
.footer__cities-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.footer__cities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2) var(--sp-4);
}
.footer__cities-row a {
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color var(--tr-fast);
  white-space: nowrap;
}
.footer__cities-row a:hover { color: var(--gold); }


/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: calc(100% - var(--sp-8));
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  z-index: var(--z-toast);
  box-shadow: var(--shadow-xl);
  transition: all var(--tr-slow);
}
.cookie-banner.hidden { transform: translateX(-50%) translateY(200%); opacity: 0; }
.cookie-banner p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  flex: 1;
}
.cookie-banner p a { color: var(--gold); }


/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-base);
  z-index: var(--z-sticky);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--text-inverse);
  border-color: var(--gold);
}


/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-fast);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: calc(100% - var(--sp-8));
  max-height: 85vh;
  overflow-y: auto;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-base);
}
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.modal__header h3 { font-size: var(--text-lg); }
.modal__close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--tr-fast);
}
.modal__close:hover { background: var(--gold-50); color: var(--text-primary); }
.modal__body { padding: var(--sp-6); }
.modal__footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-3);
}


/* === TOAST NOTIFICATIONS === */
.toast-container {
  position: fixed;
  top: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  min-width: 320px;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.4s var(--ease-out);
}
.toast--success { border-left: 3px solid var(--success); }
.toast--error { border-left: 3px solid var(--error); }
.toast--warning { border-left: 3px solid var(--warning); }
.toast--info { border-left: 3px solid var(--info); }
.toast__text { flex: 1; }
.toast__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.toast__msg {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}
.toast__close {
  color: var(--text-muted);
  padding: 2px;
  flex-shrink: 0;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}


/* === ADMIN-SPECIFIC === */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--bg-primary);
  border-right: 1px solid var(--border);
  padding: var(--sp-6);
  position: fixed;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: var(--z-sticky);
}
.admin-sidebar__logo {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  padding: var(--sp-4) var(--sp-3);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.admin-sidebar__logo span { color: var(--gold); }
.admin-sidebar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-4) var(--sp-3) var(--sp-2);
}
.admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
  text-decoration: none;
  font-weight: 500;
}
.admin-sidebar__link:hover {
  color: var(--text-primary);
  background: var(--gold-50);
}
.admin-sidebar__link.active {
  color: var(--gold);
  background: var(--gold-100);
}
.admin-sidebar__link i { width: 18px; height: 18px; }
.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: var(--sp-8);
  min-height: 100vh;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}
.admin-topbar h1 {
  font-size: var(--text-2xl);
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
}
.admin-stat__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-2);
}
.admin-stat__value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-primary);
}
.admin-stat__change {
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: var(--sp-1);
}
.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.admin-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.admin-card__header h3 { font-size: var(--text-base); }
.admin-card__body { padding: var(--sp-5) var(--sp-6); }

/* Admin search */
.admin-search {
  position: relative;
  max-width: 320px;
}
.admin-search input {
  width: 100%;
  padding: var(--sp-2) var(--sp-4) var(--sp-2) 36px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--tr-fast);
}
.admin-search input:focus { border-color: var(--gold-200); }
.admin-search i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

/* Admin body */
.admin-body { background: var(--bg-body); }

/* Admin sidebar nav links */
.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-top: var(--sp-4);
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--tr-fast);
  text-decoration: none;
  font-weight: 500;
}
.admin-nav-link:hover {
  color: var(--text-primary);
  background: var(--gold-50);
}
.admin-nav-link.active {
  color: var(--gold);
  background: var(--gold-100);
}
.admin-nav-link svg { flex-shrink: 0; }
.admin-sidebar__footer {
  margin-top: auto;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.admin-sidebar {
  display: flex;
  flex-direction: column;
}

/* Admin header */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
}
.admin-header h1 { font-size: var(--text-2xl); }

/* Admin stats (dashboard) */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}
.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
}
.admin-stat-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-primary);
}
.admin-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--sp-1);
}

/* Admin grid */
.admin-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-6);
}

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  font-size: var(--text-sm);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.015); }
.admin-table td strong { color: var(--text-primary); }

/* Admin modal */
.admin-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
}
.admin-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.admin-modal__content {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.admin-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
}
.admin-modal__header h3 { font-size: var(--text-lg); }
.admin-modal__close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-xl);
  transition: all var(--tr-fast);
  cursor: pointer;
  background: none;
  border: none;
}
.admin-modal__close:hover { background: var(--gold-50); color: var(--text-primary); }
.admin-modal__body { padding: var(--sp-6); }

/* Status badges */
.status { padding: 2px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
.status--new { background: var(--info-bg); color: var(--info); }
.status--in-progress { background: var(--warning-bg); color: var(--warning); }
.status--responded { background: var(--success-bg); color: var(--success); }
.status--closed { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.badge--neutral { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid transparent; }

/* City page spec items */
.spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-2);
}
.spec-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.spec-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
}

/* Card as link */
.card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card--link:hover { color: inherit; }
.card--link h4 { transition: color var(--tr-fast); }
.card--link:hover h4 { color: var(--gold); }

/* Admin login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login__box {
  width: 100%;
  max-width: 400px;
  padding: var(--sp-10);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.admin-login__logo {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: var(--sp-8);
}
.admin-login__logo span { color: var(--gold); }


/* === PAGE-SPECIFIC: Service Detail === */
.service-detail__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.service-detail__image {
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-detail__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-50), transparent 60%);
}
.service-detail__image i {
  width: 64px;
  height: 64px;
  color: var(--gold-200);
  position: relative;
  z-index: 1;
}
.service-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.service-spec {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.service-spec__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-1);
}
.service-spec__value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}


/* === CTA SECTION === */
.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-16) 0;
  text-align: center;
}
.cta-section h2 {
  margin-bottom: var(--sp-4);
}
.cta-section p {
  margin: 0 auto var(--sp-8);
  max-width: 500px;
}
.cta-section .hero__actions {
  justify-content: center;
}


/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal scale */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children.visible > * {
  animation: fadeSlideUp 0.5s var(--ease-out) both;
}
.stagger-children.visible > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { animation-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { animation-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { animation-delay: 0.4s; }
.stagger-children.visible > *:nth-child(9) { animation-delay: 0.45s; }
.stagger-children.visible > *:nth-child(10) { animation-delay: 0.5s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Glow pulse for hero stat values */
.hero__stat-value {
  animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { text-shadow: 0 0 20px rgba(201,169,97,0.0); }
  to { text-shadow: 0 0 30px rgba(201,169,97,0.25); }
}

/* Float animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float { animation: float 4s ease-in-out infinite; }

/* Shimmer line for gold accents */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Hover lift with glow */
.hover-lift {
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,169,97,0.08);
}

/* Border glow on hover */
.glow-border {
  position: relative;
}
.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-200) 0%, transparent 50%, var(--gold-100) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--tr-base);
}
.glow-border:hover::after {
  opacity: 1;
}

/* Gradient line animation */
.gradient-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* Parallax subtle */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Rotating border */
@keyframes borderRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

/* Pulse dot (for badges) */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.badge--gold::before {
  animation: pulseDot 2s ease-in-out infinite;
}

/* === PAGE LOAD TRANSITION === */
@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
body {
  animation: pageReveal 0.4s ease-out;
}

/* === SMOOTH SCROLL === */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* === SECTION SEPARATOR — gold gradient line === */
.section-sep {
  width: 80px;
  height: 3px;
  margin: 0 auto var(--sp-8);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* === PREMIUM CARD SHINE EFFECT === */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.card:hover::before {
  left: 120%;
}

/* === COUNTER ODOMETER STYLE === */
.counter-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s var(--ease-out);
}

/* === TEXT GRADIENT GOLD (reusable) === */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === UNDERLINE ANIMATION ON LINKS === */
.link-underline {
  position: relative;
  text-decoration: none;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.link-underline:hover::after {
  width: 100%;
}

/* === FOCUS-VISIBLE for a11y === */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* === SELECTION COLOR === */
::selection {
  background: rgba(201,169,97,0.3);
  color: var(--text-primary);
}

/* === SCROLL INDICATOR (top bar) === */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  z-index: 10001;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* === CITIES SECTION === */
.cities-map {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
}
.cities-map__regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
.cities-region__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.cities-region__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.city-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--tr-fast);
  white-space: nowrap;
}
.city-tag:hover {
  color: var(--gold);
  border-color: var(--gold-200);
  background: var(--gold-50);
  transform: translateY(-1px);
}
.city-tag--primary {
  background: var(--gold-100);
  border-color: var(--gold-200);
  color: var(--gold);
  font-weight: 700;
}
.city-tag--primary:hover {
  background: var(--gold-150);
}


/* === CITIES MEGA MENU === */
.nav__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 680px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-fast);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-dropdown);
}
.nav__dropdown:hover .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.nav__mega-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.nav__mega-col a {
  display: block;
  padding: 3px 0;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  transition: color var(--tr-fast);
}
.nav__mega-col a:hover {
  color: var(--gold);
}


/* === SEO CONTENT BLOCK === */
.seo-content {
  columns: 1;
}
.seo-content p {
  margin-bottom: var(--sp-5);
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: none;
}
.seo-content strong {
  color: var(--text-primary);
  font-weight: 600;
}


/* === UTILITIES === */
.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: var(--sp-4); }
.legal-content ul { margin-bottom: var(--sp-4); padding-left: var(--sp-5); }
.legal-content li {
  position: relative;
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .service-detail__hero { grid-template-columns: 1fr; }
  .admin-stat-grid, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .cities-map__regions { grid-template-columns: 1fr 1fr; }
  .nav__mega { width: 520px; }
  .nav__mega-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mega, .nav__dropdown-menu { display: none !important; }

  .hero { min-height: 85vh; }
  .hero__stats { flex-direction: column; gap: var(--sp-6); }

  .section { padding: var(--sp-16) 0; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero--page { min-height: 30vh; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }

  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-stat-grid, .admin-stats { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-header { padding: var(--sp-4); }
  .admin-table { font-size: var(--text-xs); }
  .admin-table th, .admin-table td { padding: var(--sp-2); }

  .usp-banner { padding: var(--sp-6); }
  .usp-banner blockquote { font-size: var(--text-base); }

  .container { padding: 0 var(--sp-4); }

  .cities-map { padding: var(--sp-6); }
  .cities-map__regions { grid-template-columns: 1fr; gap: var(--sp-6); }

  .footer__cities-row { grid-template-columns: repeat(2, 1fr); }

  .service-detail__specs { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Admin modal responsive */
  .admin-modal .admin-modal-content { width: 95%; max-width: 95vw; padding: var(--sp-6); max-height: 90vh; overflow-y: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__cities-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav__logo img { height: 26px; }
}
