:root {
  --navy: #152234;
  --navy-mid: #1E3A5F;
  --teal: #1A6B5F;
  --teal-hover: #156055;
  --teal-light: #E6F4F1;
  --cream: #F7F5F0;
  --stone: #E2DDD6;
  --slate: #5A6B7C;
  --charcoal: #2C3A4A;
  --white: #FFFFFF;
  --shadow: 0 2px 16px rgba(21,34,52,0.07);
  --shadow-md: 0 8px 32px rgba(21,34,52,0.11);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-hover); }

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--navy); }
.section--teal-light { background: var(--teal-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stone);
  height: var(--header-height);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.logo:hover { color: var(--teal); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
  display: block;
}

.main-nav a:hover { color: var(--teal); background: var(--teal-light); }
.main-nav a.active { color: var(--teal); background: var(--teal-light); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-toggle:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21,34,52,0.97);
  backdrop-filter: blur(8px);
  z-index: 999;
  flex-direction: column;
  padding: 28px 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--white); }
.mobile-nav a:last-child { border-bottom: none; }

.hero {
  padding: 100px 0;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80') center/cover no-repeat;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  color: rgba(255,255,255,0.82);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

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

.page-hero {
  padding: 68px 0 56px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,107,95,0.18) 0%, transparent 65%);
}

.page-hero .container { position: relative; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.7rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,107,95,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--stone);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title--white { color: var(--white); }

.section-desc {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

.section-desc--white { color: rgba(255,255,255,0.68); }

.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,107,95,0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.35rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
}

.card p {
  color: var(--slate);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
}

.stat-teal { color: #5DC4B4; }

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}

.data-table thead { background: var(--navy); }

.data-table th {
  padding: 13px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.data-table th:hover { background: var(--teal); }
.data-table th.th-active { background: rgba(26,107,95,0.5); }

.data-table td {
  padding: 13px 20px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--stone);
  white-space: nowrap;
  color: var(--charcoal);
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: #F0F9F7; }

.td-country {
  font-weight: 500;
  color: var(--navy);
}

.td-salary-high { color: #1A6B5F; font-weight: 600; }
.td-salary-mid { color: #7A5000; font-weight: 600; }
.td-salary-low { color: #6B3A3A; font-weight: 600; }

.region-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.rb-europe { background: var(--teal-light); color: var(--teal); }
.rb-americas { background: #FFF3E0; color: #9A5800; }
.rb-asia-pacific { background: #EDE7F6; color: #5E35B1; }
.rb-middle-east { background: #FFF8E1; color: #C49000; }
.rb-africa { background: #FCE4EC; color: #AD1457; }

.col-bar-wrap {
  width: 100px;
  height: 6px;
  background: var(--stone);
  border-radius: 100px;
  overflow: hidden;
  display: inline-block;
}

.col-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 100px;
}

.filter-bar {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

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

.filter-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}

.form-input, .form-select {
  padding: 8px 14px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,95,0.08);
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-wrap i {
  position: absolute;
  left: 10px;
  color: var(--slate);
  pointer-events: none;
  font-size: 0.95rem;
}

.search-wrap .form-input {
  padding-left: 32px;
  min-width: 220px;
}

.result-count {
  margin-left: auto;
  font-size: 0.84rem;
  color: var(--slate);
}

.info-box {
  background: var(--teal-light);
  border: 1px solid rgba(26,107,95,0.18);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-box i { color: var(--teal); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.info-box p { margin: 0; font-size: 0.9rem; color: var(--teal); line-height: 1.5; }

.country-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.country-card:hover {
  border-color: rgba(26,107,95,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.country-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.country-card .cc-region {
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 16px;
}

.cc-salary-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--teal);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.cc-salary-label {
  font-size: 0.75rem;
  color: var(--slate);
  display: block;
  margin-bottom: 12px;
}

.cc-bar-bg {
  height: 5px;
  background: var(--stone);
  border-radius: 100px;
  overflow: hidden;
}

.cc-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 100px;
}

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--stone);
  transition: all var(--transition);
}

.value-card:hover { box-shadow: var(--shadow); }

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.value-card p { font-size: 0.9rem; color: var(--slate); margin: 0; line-height: 1.55; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-item { text-align: center; }

.step-num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
}

.step-item p { font-size: 0.9375rem; color: var(--slate); }

.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.66);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
  align-items: start;
}

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-intro { color: var(--slate); font-size: 0.95rem; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-item p { margin: 0; color: var(--charcoal); font-size: 0.9375rem; }
.contact-item a { color: var(--charcoal); }
.contact-item a:hover { color: var(--teal); }

.form-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.form-card .form-subtitle {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group .form-input,
.form-group .form-select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-group .form-input:focus,
.form-group .form-select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,95,0.08);
}

.form-note {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success.visible { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--slate); }

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose .meta-info {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  padding: 12px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 40px;
}

.prose .meta-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--teal);
}

.prose h2 {
  font-size: 1.45rem;
  margin: 44px 0 14px;
  padding-top: 44px;
  border-top: 1px solid var(--stone);
}

.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.prose h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  font-family: var(--font-body);
  font-weight: 600;
}

.prose p { color: var(--charcoal); line-height: 1.78; }

.prose ul { margin: 0 0 1rem 0; padding-left: 4px; }

.prose li {
  color: var(--charcoal);
  line-height: 1.72;
  padding: 3px 0 3px 22px;
  position: relative;
}

.prose li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.prose a { color: var(--teal); text-decoration: underline; }
.prose strong { font-weight: 600; color: var(--navy); }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 14px; color: var(--white); }
.footer-brand .logo:hover { color: var(--teal-light); }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover { background: var(--teal); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col li { margin-bottom: 11px; }

.footer-col a {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0E1D2E;
  border-top: 3px solid var(--teal);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-text a { color: #5DC4B4; text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.btn-cookie-accept:hover { background: var(--teal-hover); border-color: var(--teal-hover); }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 2px solid rgba(255,255,255,0.18);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
  font-size: 1.15rem;
  border: none;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal); }

.divider {
  height: 1px;
  background: var(--stone);
  margin: 40px 0;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal);
  margin-right: 6px;
  margin-bottom: 6px;
}

.faq-item {
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream); }
.faq-question i { flex-shrink: 0; color: var(--teal); font-size: 1rem; transition: transform var(--transition); }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .step-num { margin: 0 0 16px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 72px 0; }
  .page-hero { padding: 52px 0 44px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .result-count { margin-left: 0; }
  .cookie-banner .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .cta-section { padding: 60px 0; }
  .form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.85rem; }
  .hero-badge { font-size: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-links { gap: 12px; }
}

.cookie-table-wrapper { overflow-x: auto; margin: 20px 0 28px; border-radius: 8px; border: 1px solid var(--stone); }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.cookie-table thead { background: var(--navy); color: #fff; }
.cookie-table th { padding: 12px 16px; text-align: left; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
.cookie-table td { padding: 12px 16px; border-bottom: 1px solid var(--stone); vertical-align: top; }
.cookie-table tbody tr:last-child td { border-bottom: none; }
.cookie-table tbody tr:nth-child(even) { background: var(--cream); }
.cookie-table code { background: var(--stone); padding: 2px 6px; border-radius: 4px; font-size: 0.8rem; font-family: 'Courier New', monospace; }
