/*
Theme Name: KACI Consulting & Partners
Theme URI: https://kaci-consulting.com
Author: KACI Consulting
Author URI: https://kaci-consulting.com
Description: Custom WordPress theme for KACI Consulting & Partners. Built with ACF Pro flexible content.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaci-consulting
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Tailwind Primary Palette */
  --primary-50:  #FDF8F3;
  --primary-100: #F5E6E0;
  --primary-200: #E6C4B8;
  --primary-700: #5E2618;
  --primary-800: #42170C;
  --primary-900: #390D04;

  /* Tailwind Secondary Palette */
  --secondary-500: #D4A853;
  --secondary-600: #B8933F;

  /* Tailwind Gray Palette */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-900: #111827;

  /* Legacy Primary Brand Colors (mapped to new tokens for consistency) */
  --brand: var(--primary-900);
  --brand-light: #6B2D1A;
  --brand-soft: #A65D48;
  --brand-muted: rgba(57, 13, 4, 0.08);
  --brand-hover: rgba(57, 13, 4, 0.12);

  /* Legacy Accent Colors (mapped to secondary) */
  --accent: var(--secondary-500);
  --accent-soft: rgba(212, 168, 83, 0.15);

  /* Background Colors */
  --bg: var(--primary-50);
  --bg-subtle: var(--gray-50);
  --surface: #FFFFFF;
  --surface-alt: #FAF1EB;

  /* Border & Lines */
  --line: rgba(57, 13, 4, 0.08);
  --line-strong: var(--gray-200);

  /* Text Colors */
  --ink: #1A0A05;
  --muted: #6B5A52;
  --text-secondary: var(--gray-600);
  --text-gray: var(--gray-500);

  /* Dark Theme */
  --dark-card-bg: var(--primary-800);
  --dark-card-border: var(--primary-700);
  --footer-bg: var(--primary-900);
  --footer-text: var(--primary-50);
  --footer-muted: rgba(253, 248, 243, 0.7);

  /* Shadows */
  --shadow: 0 8px 32px rgba(57, 13, 4, 0.08);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Layout */
  --container: 1280px;

  /* Typography */
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  /* Animation */
  --transition-fast: 150ms ease;
  --transition-base: 0.2s ease;
}

/* ========================================
   BASE STYLES & RESET
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #390D04;
  color: white;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-content {
  padding-top: 5rem;
}

.max-w-7xl {
  max-width: 1280px;
  margin: 0 auto;
}

.max-w-4xl {
  max-width: 56rem;
  margin: 0 auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

.section--compact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .section--compact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section--hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem; /* text-xs */
  font-weight: 600; /* font-semibold */
  letter-spacing: 0.05em; /* tracking-wider */
  text-transform: uppercase;
  color: var(--primary-700);
  background-color: var(--primary-50);
  padding: 0.25rem 0.75rem; /* px-3 py-1 */
  border-radius: 9999px; /* rounded-full */
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 50ch;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 45rem;
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Section header eyebrow & description utilities */
.section-desc {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.section-desc--mb {
  margin-bottom: 1.5rem;
}

/* ========================================
   BACKGROUNDS
   ======================================== */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f8fafc; }
.bg-gray-100 { background-color: #f1f5f9; }
.hero-bg { background-color: #390D04; }

/* Tailwind-like utilities */
.hidden { display: none !important; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (min-width: 1040px) {
  .lg\:inline-flex { display: inline-flex; }
}
.about-bg { background-color: #f8fafc; }
.contact-bg { background-color: #390D04; }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-900);
  color: white;
  padding: 1rem 2rem; /* px-8 py-4 */
  border-radius: 0.5rem; /* rounded-lg */
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  border: none;
}

.btn-primary:hover {
  background: #6B2D1A;
}

.btn-cta {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-900);
  color: var(--primary-900);
  background: transparent;
  padding: 1rem 2rem; /* px-8 py-4 */
  border-radius: 0.5rem; /* rounded-lg */
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--primary-900);
  color: white;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--line);
  padding: 1rem 2rem; /* px-8 py-4 */
  border-radius: 0.5rem; /* rounded-lg */
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(57, 13, 4, 0.04);
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem; /* px-8 py-4 */
  border-radius: 0.5rem; /* rounded-lg */
  color: white;
  background: var(--primary-900);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.site-cta:hover {
  background: #6B2D1A;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(57, 13, 4, 0.08);
  transition: all 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(57, 13, 4, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-brand__logo {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.site-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-brand-line1 {
  color: #111827;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-brand-line2 {
  color: #111827;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 1040px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.is-active {
  color: #390D04;
}

.nav-link.is-active {
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #390D04;
  transition: width 0.2s ease;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  width: 100%;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem;
  background: #f3f4f6;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.lang-toggle:hover {
  background: #e5e7eb;
}

.lang-option {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.lang-option.active {
  background: #390D04;
  color: white;
  font-weight: 600;
}

.lang-separator {
  display: none;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #1f2937;
  cursor: pointer;
}

@media (min-width: 1040px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-panel {
  display: none;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(57, 13, 4, 0.08);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav-stack {
  display: grid;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #4b5563;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  background-color: rgba(57, 13, 4, 0.08);
  color: #390D04;
}

.mobile-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background-color: #390D04;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
  }
}

.hero-text-col {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text-col {
    text-align: left;
  }
}

.hero-eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-eyebrow {
    justify-content: flex-start;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #E6C4B8;
}

.hero-body {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-body {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-trust {
    justify-content: flex-start;
  }
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -0.5rem;
}

.hero-avatar:first-child {
  margin-left: 0;
  background: #B87A65;
}

.hero-avatar:nth-child(2) {
  background: #D4A08D;
}

.hero-avatar:nth-child(3) {
  background: #7C3A28;
}

.hero-trust-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.hero-aside-card {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid #f3f4f6;
}

.hero-aside-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7C3A28;
  margin-bottom: 1.5rem;
}

.hero-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-step-number.active {
  background: #7C3A28;
  color: white;
}

.hero-step-number.inactive {
  background: #f3f4f6;
  color: #4b5563;
}

.hero-step-title {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}

.hero-step-desc {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

.hero-step-line {
  width: 1px;
  height: 1rem;
  background: #e5e7eb;
  margin-left: 1rem;
}

.hero-aside-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-phone-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #7C3A28;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: #7C3A28;
  background: #F5E6E0;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* ========================================
   PARTNERS BANNER
   ======================================== */
.partners-section {
  background: white;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding: 3rem 0;
}

.partners-eyebrow {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.partners-strip-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.partners-track {
  animation: partners-scroll 36s linear infinite;
  will-change: transform;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  height: 5.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.partner-logo-pill:hover {
  border-color: rgba(57,13,4,0.25);
}

.partner-logo-pill img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  max-width: 130px;
}

.partner-logo-pill.tall img {
  height: 3rem;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  padding: 3rem 0;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #390D04;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #4b5563;
  font-size: 0.875rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 3rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .services-section {
    padding: 4rem 0;
  }
}

.services-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  border-color: #390D04;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--brand-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.service-card:hover .service-card__icon {
  background: var(--brand-hover);
  transform: scale(1.05);
}

.service-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #5E2618;
}

.service-card__logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  color: #5E2618;
  font-weight: 600;
  font-size: 0.875rem;
}

.service-card__cta svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__cta svg {
  transform: translateX(4px);
}

/* ========================================
   RELOCATION HIGHLIGHT
   ======================================== */
.relocation-section {
  padding: 3rem 0;
  background: #f8fafc;
}

@media (min-width: 1024px) {
  .relocation-section {
    padding: 4rem 0;
  }
}

.relocation-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.relocation-section h2,
.contact-section h2 {
  color: #111827;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.1112;
  font-weight: 700;
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  .relocation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checklist-text {
  color: #374151;
}

.checklist-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #F5E6E0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #5E2618;
}

.checklist-icon svg {
  width: 1rem;
  height: 1rem;
}

.relocation-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
}

.relocation-card img {
  border-radius: 0.75rem;
  width: 100%;
  height: 14rem;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.relocation-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-stat {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.mini-stat__value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #5E2618;
  margin-bottom: 0.25rem;
}

.mini-stat__label {
  font-size: 0.875rem;
  color: #4b5563;
}

.relocation-phone {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #F5E6E0;
  border-radius: 0.5rem;
  border: 1px solid #E6C4B8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.relocation-phone__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #7C3A28;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relocation-phone__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.relocation-phone__label {
  font-weight: 600;
  color: #111827;
}

.relocation-phone__number {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========================================
   CARDS SECTION (Generic)
   ======================================== */
.cards-section {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .cards-section {
    padding: 4rem 0;
  }
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.generic-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: block;
  text-decoration: none;
}

.generic-card:hover {
  border-color: #390D04;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.generic-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7C3A28;
  margin-bottom: 0.5rem;
}

.generic-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.generic-card__desc {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.generic-card__desc-list {
  display: grid;
  gap: 0.625rem;
}

.generic-card__desc-list span {
  display: block;
}

/* Blog archive / index */
.archive-grid {
  margin-bottom: 3rem;
}

.archive-thumb-link {
  display: block;
  margin-bottom: 1rem;
}

.archive-thumb-link img {
  border-radius: 0.5rem;
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

/* Single post */
.single-header {
  margin-bottom: 2rem;
}

.single-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.single-meta {
  color: var(--muted);
  font-size: 0.875rem;
}

.single-thumb {
  border-radius: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
}

.section-heading--mb {
  margin-bottom: 3rem;
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-section {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .steps-section {
    padding: 4rem 0;
  }
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #E6C4B8;
  margin-bottom: 0.75rem;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-card__desc {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  padding: 3rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 4rem 0;
  }
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.testimonial-card__quote {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}

.testimonial-card__role {
  color: #6b7280;
  font-size: 0.85rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  padding: 3rem 0;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 4rem 0;
  }
}

.pricing-section .services-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing-section .services-header h2 {
  margin-bottom: 1.5rem;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  background: #111827;
  border-color: #111827;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #390D04;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  line-height: 1.25;
}

.pricing-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7C3A28;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-card__label {
  color: #D4A08D;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.pricing-card.featured .pricing-card__title {
  color: #ffffff;
}

.pricing-card__desc {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.pricing-card__desc span {
  font-size: 0.75rem;
}

.pricing-card.featured .pricing-card__desc {
  color: #E6C6BA;
}

.pricing-card__price {
  font-family: var(--font-display);
  color: #390D04;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-card__price {
  color: #ffffff;
}

.pricing-card__price-from,
.pricing-card__period {
  display: block;
  color: #9ca3af;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
}

.pricing-card__amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card__currency {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-card__number {
  color: #111827;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
}

.pricing-card.featured .pricing-card__currency,
.pricing-card.featured .pricing-card__number {
  color: #ffffff;
}

.pricing-section__note {
  margin: 1.5rem auto 0;
  max-width: 56rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pricing-section__note a {
  color: #390D04;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  flex: 1 1 auto;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.45;
}

.pricing-card.featured .pricing-features li {
  color: #d1d5db;
}

.pricing-card.featured .pricing-features li:first-child {
  color: #ffffff;
  font-weight: 700;
}

.pricing-features li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23390D04' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card.featured .pricing-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4A08D' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.pricing-card__button {
  display: block;
  width: 100%;
  margin-top: auto;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: #374151;
  text-align: center;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pricing-card__button:hover,
.pricing-card__button:focus {
  border-color: #390D04;
  color: #390D04;
}

.pricing-card.featured .pricing-card__button {
  border-color: #390D04;
  background: #390D04;
  color: #ffffff;
}

.pricing-card.featured .pricing-card__button:hover,
.pricing-card.featured .pricing-card__button:focus {
  background: #4A1308;
  color: #ffffff;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 5rem 0;
  background: #390D04;
  text-align: center;
}

.cta-section__eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 3rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 4rem 0;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   SPLIT SECTION
   ======================================== */
.split-section {
  padding: 3rem 0;
  background: white;
}

@media (min-width: 1024px) {
  .split-section {
    padding: 4rem 0;
  }
}

.split-section img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}

.split-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.split-section--balkans .split-grid {
  align-items: center;
}

.split-section--balkans h2 {
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

.split-copy {
  max-width: 37rem;
}

.split-copy p {
  margin: 0;
}

.split-copy p + p {
  margin-top: 1.25rem;
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.split-stat {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.split-section--balkans .split-stats {
  margin-top: 0;
  gap: 1rem;
}

.split-section--balkans .split-stat {
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  text-align: left;
  border-radius: 0.75rem;
}

.split-section--balkans .split-stat:nth-child(2) {
  background: #4A1308;
}

.split-section--balkans .split-stat:nth-child(3) {
  background: #111827;
}

.split-stat__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #390D04;
  margin-bottom: 0.25rem;
}

.split-stat__label {
  font-size: 0.85rem;
  color: #6b7280;
}

.split-section--balkans .split-stat__value {
  font-size: 2rem;
  line-height: 1.1;
  color: #390D04;
}

.split-section--balkans .split-stat__label {
  margin-top: 0.75rem;
  color: #334155;
}

.split-section--balkans .split-stat:nth-child(2) .split-stat__value,
.split-section--balkans .split-stat:nth-child(2) .split-stat__label,
.split-section--balkans .split-stat:nth-child(3) .split-stat__value,
.split-section--balkans .split-stat:nth-child(3) .split-stat__label {
  color: #ffffff;
}

.split-section--balkans .split-stat:nth-child(3) .split-stat__label {
  color: rgba(255, 255, 255, 0.72);
}

.split-address-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid #f1d8cc;
  border-radius: 0.875rem;
  background: #fff8f4;
}

.split-address-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #8B3F2B;
  color: #ffffff;
}

.split-address-card__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.split-address-card p {
  margin: 0 0 0.35rem;
  color: #111827;
  font-weight: 700;
}

.split-address-card span {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.45;
}

@media (max-width: 767px) {
  .split-section--balkans .split-stats {
    grid-template-columns: 1fr;
  }

  .split-section--balkans .split-stat {
    min-height: auto;
  }

  .split-address-card {
    align-items: flex-start;
  }
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
  padding: 3rem 0;
  background: #f8fafc;
}

@media (min-width: 1024px) {
  .why-section {
    padding: 4rem 0;
  }
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.why-grid + .stats-grid {
  margin-top: 0;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.why-card__desc {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-section--western-balkans {
  background: #ffffff;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .why-section--western-balkans {
    padding: 4rem 0;
  }
}

.wb-why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .wb-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

.wb-why-copy h2 {
  color: #111827;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.1112;
  font-weight: 700;
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.wb-why-copy > p {
  max-width: 36rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.5556;
  margin: 0 0 2rem;
}

.wb-why-list {
  display: grid;
  gap: 1.5rem;
}

.wb-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wb-why-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #f4e3dc;
  color: #8B3F2B;
}

.wb-why-item svg {
  width: 1.5rem;
  height: 1.5rem;
}

.wb-why-item h3 {
  color: #111827;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.wb-why-item p {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.4286;
  margin: 0;
}

.wb-why-panel {
  border-radius: 0.5rem;
  background: #fdf8f3;
  padding: 2rem;
}

.wb-why-panel img {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.wb-why-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wb-why-stats div {
  min-height: 5.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  background: #ffffff;
  padding: 1rem;
  text-align: center;
}

.wb-why-stats strong {
  display: block;
  color: #8B3F2B;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.wb-why-stats span {
  display: block;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ========================================
   LOGOS SECTION
   ======================================== */
.logos-section {
  padding: 3rem 0;
  background: white;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.logo-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  min-height: 8.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  max-height: 4.75rem;
  width: auto;
  object-fit: contain;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-section {
  padding: 3rem 0;
  background: #f8fafc;
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 4rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 150ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-soft);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.form-grid .form-field.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Contact info sidebar */
.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #F5E6E0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5E2618;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-label {
  font-weight: 600;
}

.contact-link {
  color: var(--muted);
}

.contact-link:hover {
  color: var(--brand);
}

/* Contact form grid */
.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form > .form-field.full-width {
  grid-column: 1 / -1;
}

.contact-form > .full-width {
  grid-column: 1 / -1;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status--success {
  color: #166534;
  background: rgba(22, 163, 74, 0.12);
}

.form-status--error {
  color: #991b1b;
  background: rgba(220, 38, 38, 0.12);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #390D04;
  color: #FDF8F3;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand__logo img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
}

.footer-brand__logo img.brand-mark-footer {
  height: 5rem;
  width: auto;
  object-fit: contain;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand__tagline {
  color: rgba(253, 248, 243, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-brand__address {
  color: rgba(253, 248, 243, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-column h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #E6C4B8;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #D4A08D;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #42170C;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(253, 248, 243, 0.5);
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: #42170C;
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer-social__link:hover {
  background: #D4A853;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social__link svg {
  width: 1rem;
  height: 1rem;
}

/* Footer BugAgency Badge */
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.footer-badge__label {
  font-size: 0.7rem;
  color: rgba(253, 248, 243, 0.5);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-badge__logo {
  height: 1.25rem;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }
}

/* ========================================
   RELOCATION WIZARD
   ======================================== */
.wizard-section {
  background: var(--bg);
  padding: 5rem 0;
}

.wizard-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.wizard-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .wizard-title {
    font-size: 2.5rem;
  }
}

.wizard-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.wizard-steps {
  margin-bottom: 3rem;
}

/* Progress bar */
.wizard-progress {
  margin-bottom: 2rem;
}

.wizard-progress__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.wizard-progress__node {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: white;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wizard-progress__node.active {
  background: var(--brand);
  border-color: var(--brand);
}

.wizard-progress__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.wizard-progress__node.active .wizard-progress__number {
  color: white;
}

.wizard-progress__line {
  flex: 1;
  height: 2px;
  background: var(--line-strong);
  margin: 0 0.5rem;
}

/* Steps grid */
.wizard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wizard-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .wizard-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

.wizard-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.2s ease;
}

.wizard-step:hover {
  border-color: var(--brand-light);
  box-shadow: 0 4px 12px rgba(57, 13, 4, 0.08);
}

.wizard-step.active {
  border-color: var(--brand);
  box-shadow: 0 4px 16px rgba(57, 13, 4, 0.12);
}

.wizard-step.completed {
  border-color: #10b981;
  background: #f0fdf4;
}

.wizard-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--bg-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.wizard-step.active .wizard-step__number {
  background: var(--brand);
  color: white;
}

.wizard-step.completed .wizard-step__number {
  background: #10b981;
  color: white;
}

.wizard-step__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.wizard-step__desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.wizard-cta {
  text-align: center;
}

.btn-primary--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  gap: 0.5rem;
}

.wizard-cta__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ========================================
   VIVA MICE SECTION
   ======================================== */
.viva-section {
  background: #390D04;
  color: #FDF8F3;
  padding: 5rem 0;
  overflow: hidden;
}

.viva-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .viva-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.viva-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.viva-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .viva-title {
    font-size: 2.25rem;
  }
}

.viva-desc {
  color: rgba(253, 248, 243, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.viva-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.viva-card {
  border-radius: 0.875rem;
  padding: 1rem;
}

.viva-card--hotel {
  background: rgba(13, 126, 139, 0.12);
  border: 1px solid rgba(13, 126, 139, 0.25);
}

.viva-card--client {
  background: rgba(245, 144, 34, 0.1);
  border: 1px solid rgba(245, 144, 34, 0.25);
}

.viva-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.viva-card--hotel .viva-card__label {
  color: #0D7E8B;
}

.viva-card--client .viva-card__label {
  color: #F59022;
}

.viva-card__text {
  font-size: 0.8rem;
  color: rgba(253, 248, 243, 0.7);
  line-height: 1.5;
}

.viva-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.viva-stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.viva-stat:nth-child(3) .viva-stat__value {
  color: #F59022;
}

.viva-stat:nth-child(5) .viva-stat__value {
  color: #0D7E8B;
}

.viva-stat__label {
  font-size: 0.75rem;
  color: rgba(253, 248, 243, 0.6);
  margin-top: 0.25rem;
}

.viva-stat__divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.15);
}

.viva-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-viva {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
  background: #0D7E8B;
  transition: all 0.2s ease;
}

.btn-viva:hover {
  background: #0a6a75;
}

.btn-viva-ghost {
  font-size: 0.9rem;
  color: rgba(253, 248, 243, 0.7);
  transition: color 0.2s ease;
}

.btn-viva-ghost:hover {
  color: white;
}

/* VIVA Dashboard Preview */
.viva-dashboard {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  background: #f1f5f9;
}

.viva-dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #e2e8f0;
}

.viva-dashboard__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.viva-dashboard__dot--red { background: #f87171; }
.viva-dashboard__dot--yellow { background: #facc15; }
.viva-dashboard__dot--green { background: #4ade80; }

.viva-dashboard__url {
  margin-left: 0.75rem;
  flex: 1;
  background: white;
  border-radius: 0.25rem;
  padding: 0.125rem 0.75rem;
  font-size: 0.7rem;
  color: #94a3b8;
}

.viva-dashboard__body {
  display: flex;
  min-height: 280px;
}

.viva-dashboard__sidebar {
  width: 130px;
  flex-shrink: 0;
  background: white;
  border-right: 1px solid #e2e8f0;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.viva-dashboard__sidebar-logo {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
  margin: 0 0.5rem 0.75rem;
}

.viva-dashboard__nav-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  color: #64748b;
}

.viva-dashboard__nav-item.active {
  background: #0D7E8B;
  color: white;
  font-weight: 600;
}

.viva-dashboard__nav-item svg {
  flex-shrink: 0;
}

.viva-dashboard__badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.viva-dashboard__badge--orange {
  background: rgba(245, 144, 34, 0.15);
  color: #F59022;
}

.viva-dashboard__badge--teal {
  background: rgba(13, 126, 139, 0.15);
  color: #0D7E8B;
}

.viva-dashboard__main {
  flex: 1;
  padding: 1rem;
  background: white;
}

.viva-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.viva-dashboard__header span {
  color: #94a3b8;
  font-weight: 400;
}

.viva-dashboard__live {
  color: #0D7E8B !important;
  font-size: 0.75rem;
  font-weight: 700 !important;
}

.viva-dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.viva-dashboard__kpi {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 0.625rem;
}

.viva-dashboard__kpi-label {
  font-size: 0.6rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.viva-dashboard__kpi-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.viva-dashboard__list {
  border: 1px solid #f1f5f9;
  border-radius: 0.5rem;
  overflow: hidden;
}

.viva-dashboard__list-header,
.viva-dashboard__list-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
}

.viva-dashboard__list-header {
  background: #f8fafc;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.viva-dashboard__list-row {
  border-top: 1px solid #f8fafc;
}

.viva-dashboard__event {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.viva-dashboard__dot-sm {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.viva-dashboard__event span {
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viva-dashboard__value {
  text-align: right;
  color: #F59022;
  font-weight: 600;
}

.viva-dashboard__status {
  text-align: right;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.viva-dashboard__portal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #0D7E8B, #07606a);
}

.viva-dashboard__portal-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.viva-dashboard__portal-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.viva-dashboard__portal-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

.viva-dashboard__portal-subtitle {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
}

.viva-dashboard__portal-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.viva-dashboard__portal-btn {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.15);
  color: white;
  white-space: nowrap;
}

.viva-dashboard__portal-btn--accent {
  background: #F59022;
}

@media (max-width: 767px) {
  .viva-cards {
    grid-template-columns: 1fr;
  }

  .viva-dashboard__body {
    flex-direction: column;
  }

  .viva-dashboard__sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0.5rem;
  }

  .viva-dashboard__sidebar-logo {
    margin: 0 0.5rem 0 0;
  }

  .viva-dashboard__nav-item {
    flex: 1;
    min-width: 100px;
    justify-content: center;
  }

  .viva-dashboard__portal {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section {
  padding: 3rem 0;
}

.entry-content {
  max-width: 800px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.entry-content p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.no-js .section-reveal {
  opacity: 1;
  transform: none;
}

/* ========================================
   WORDPRESS DEFAULTS
   ======================================== */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1023px) {
  .hero-aside-card {
    display: none;
  }
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Detail page parity overrides */
.generic-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #F3D7CC;
  color: #7C3A28;
  margin-bottom: 1.25rem;
}

.generic-card__icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2;
}

.page-slug-relocation .cards-section,
.page-slug-western-balkans .cards-section,
.page-slug-viva-mice .cards-section {
  padding: 5rem 0;
}

.page-slug-relocation .cards-section:nth-of-type(2),
.page-slug-western-balkans .cards-section:nth-of-type(2) {
  background: #f9fafb;
}

.page-slug-relocation .cards-section:nth-of-type(2) {
  background: #ffffff;
}

.page-slug-relocation .generic-card,
.page-slug-western-balkans .generic-card,
.viva-feature-grid .generic-card {
  border-color: #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.page-slug-relocation .cards-section--relocation-services {
  padding: 6rem 0 5rem;
  background: #ffffff;
}

.page-slug-relocation .cards-section--relocation-services .services-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.page-slug-relocation .cards-section--relocation-services .services-header h2 {
  color: #111827;
  font-size: 2.25rem;
  line-height: 1.1112;
  margin-bottom: 1.5rem;
}

.page-slug-relocation .cards-section--relocation-services .section-desc {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.5556;
}

.page-slug-relocation .cards-section--relocation-services .cards-grid {
  gap: 1.75rem;
}

.page-slug-relocation .cards-section--relocation-services .generic-card {
  min-height: 15.75rem;
  padding: 1.75rem;
  background: #f8fafc;
  border-color: transparent;
  border-radius: 0.5rem;
  box-shadow: none;
}

.page-slug-relocation .cards-section--relocation-services .generic-card:hover {
  border-color: transparent;
  box-shadow: none;
}

.page-slug-relocation .cards-section--relocation-services .generic-card__icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  background: #F3D7CC;
  color: #7C3A28;
}

.page-slug-relocation .cards-section--relocation-services .generic-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.page-slug-relocation .cards-section--relocation-services .generic-card__title {
  margin-bottom: 1rem;
  color: #111827;
  font-size: 1.25rem;
  line-height: 1.4;
}

.page-slug-relocation .cards-section--relocation-services .generic-card__desc {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}

.page-slug-western-balkans .cards-section--western-industries {
  background: #f9fafb;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .page-slug-western-balkans .cards-section--western-industries {
    padding: 4rem 0;
  }
}

.page-slug-western-balkans .cards-section--western-industries .services-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.page-slug-western-balkans .cards-section--western-industries .services-header h2 {
  color: #111827;
  font-size: 2.25rem;
  line-height: 1.1112;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

.page-slug-western-balkans .cards-section--western-industries .section-desc {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.5556;
}

.page-slug-western-balkans .cards-section--western-industries .cards-grid {
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .page-slug-western-balkans .cards-section--western-industries .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-slug-western-balkans .cards-section--western-industries .generic-card {
  min-height: 11.875rem;
  padding: 1.5rem;
  border-color: #f3f4f6;
  border-radius: 0.5rem;
  background: #ffffff;
  text-align: center;
  box-shadow: none;
}

.page-slug-western-balkans .cards-section--western-industries .generic-card:hover {
  border-color: #e6c4b8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.page-slug-western-balkans .cards-section--western-industries .generic-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 0.5rem;
  background: #fdf8f3;
  color: #7C3A28;
}

.page-slug-western-balkans .cards-section--western-industries .generic-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 2;
}

.page-slug-western-balkans .cards-section--western-industries .generic-card__title {
  color: #111827;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.page-slug-western-balkans .cards-section--western-industries .generic-card__desc {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.4286;
  margin: 0;
}

.page-slug-relocation .steps-section {
  background: #f9fafb;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .page-slug-relocation .steps-section {
    padding: 7rem 0;
  }
}

.page-slug-relocation .steps-section .services-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.page-slug-relocation .steps-section .services-header h2 {
  color: #111827;
  font-size: 2.25rem;
  line-height: 1.1112;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 1.5rem;
}

.page-slug-relocation .steps-grid {
  gap: 2rem;
}

.page-slug-relocation .step-card {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;
}

.page-slug-relocation .step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: #7C3A28;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  margin: 0 auto 1rem;
}

.page-slug-relocation .step-card__title {
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.5556;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-slug-relocation .step-card__desc {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}

.cta-section {
  background: #ffffff;
  padding: 3.5rem 0 4.5rem;
}

.cta-section .container {
  max-width: 60rem;
  border-radius: 1rem;
  background: #390D04;
  padding: 3.5rem 2rem;
}

.cta-section .btn-primary {
  margin: 0 auto;
}

.viva-trusted {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  padding: 3rem 0;
  text-align: center;
}

.viva-trusted p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2rem;
}

.viva-trusted__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0.5;
}

.viva-trusted__logos span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

.viva-trusted__logos svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.viva-features-detail,
.viva-integrations-detail,
.detail-demo-cta {
  background: #ffffff;
  padding: 5rem 0;
}

.viva-feature-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
  border-radius: 1rem;
  background: #390D04;
  color: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1024px) {
  .viva-feature-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 22rem);
  }
}

.viva-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 1.75rem;
  padding: 0 0.875rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(13, 126, 139, 0.35);
  color: #67e8f9;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}

.viva-feature-badge svg {
  width: 1rem;
  height: 1rem;
}

.viva-feature-hero h3,
.viva-operations-detail h2 {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.3334;
  margin-bottom: 1rem;
}

.viva-feature-hero p,
.viva-operations-detail p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.viva-feature-hero .viva-feature-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 1.25rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  list-style: none;
  padding-left: 0;
}

.viva-feature-hero .viva-feature-checks li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.35;
  font-weight: 700;
  list-style: none;
}

.viva-feature-hero .viva-feature-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0D7E8B;
  font-weight: 700;
}

.viva-calendar-card,
.viva-beo-card {
  border-radius: 0.875rem;
  background: #ffffff;
  color: #111827;
  padding: 0;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.viva-calendar-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.625rem 0.75rem;
  background: #0D7E8B;
  color: #ffffff;
  font-size: 0.75rem;
}

.viva-calendar-card__top span {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
}

.viva-calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
}

.viva-calendar-grid span,
.viva-calendar-grid b {
  border-radius: 0;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.5rem 0.45rem;
  min-height: 3rem;
  font-size: 0.75rem;
}

.viva-calendar-grid span {
  min-height: auto;
  color: #94a3b8;
  text-align: center;
  font-weight: 500;
}

.viva-calendar-grid b {
  font-size: 0.75rem;
  line-height: 1.1;
}

.viva-calendar-grid em {
  display: inline-block;
  max-width: 100%;
  color: #ffffff;
  font-style: normal;
  font-size: 0.6rem;
  margin-top: 0.5rem;
  padding: 0.25rem 0.35rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-definitive { background: #0D7E8B; }
.status-option { background: #F59022; }
.status-inquiry { background: #3b82f6; }
.status-blocked { background: #ef4444; }

.viva-calendar-legend {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.5rem 0.75rem 0.75rem;
  background: #ffffff;
  color: #64748b;
  font-size: 0.6875rem;
}

.viva-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.viva-calendar-legend i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.125rem;
}

.legend-definitive { background: #0D7E8B; }
.legend-option { background: #F59022; }
.legend-inquiry { background: #3b82f6; }
.legend-blocked { background: #ef4444; }

.viva-beo-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.viva-feature-grid,
.viva-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.viva-integrations-detail {
  background: #f9fafb;
  padding: 4rem 0;
}

.viva-integrations-detail .services-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.viva-integrations-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #fdf8f3;
  color: #5E2618;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.viva-integrations-detail .services-header h2 {
  color: #111827;
  font-size: 2.25rem;
  line-height: 1.1112;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.viva-integrations-detail .section-desc {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.5556;
}

.viva-integrations-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.viva-integration-card {
  min-height: 10.5rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  background: #ffffff;
  text-align: center;
}

.viva-integration-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
}

.viva-integration-card svg {
  width: 1.75rem;
  height: 1.75rem;
}

.viva-integration-card h4 {
  color: #111827;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.viva-integration-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
}

.viva-integration-card--opera span {
  background: #eff6ff;
  color: #2563eb;
}

.viva-integration-card--salesforce span {
  background: #f0fdf4;
  color: #16a34a;
}

.viva-integration-card--scrive span {
  background: #faf5ff;
  color: #7c3aed;
}

.viva-integration-card--datev span {
  background: #fff7ed;
  color: #ea580c;
}

.viva-workflow-detail {
  background: #ffffff;
  padding: 5rem 0;
}

.viva-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}

.viva-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 1.25rem;
  height: 1px;
  background: #cbd5e1;
}

.viva-timeline__item {
  position: relative;
  text-align: center;
}

.viva-timeline__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #0E6B72;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.viva-timeline__item h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.viva-timeline__item p {
  margin-top: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
}

.viva-operations-detail {
  background: #390D04;
  color: #ffffff;
  padding: 5rem 0;
}

.viva-operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.viva-operations-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.viva-operations-cards article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.875rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.viva-operations-cards h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.viva-beo-card h3 {
  color: #111827;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.viva-beo-card p {
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.viva-beo-card small {
  display: inline-flex;
  margin: 0 0.5rem 0.75rem 0;
  color: #64748b;
  font-size: 0.8125rem;
}

.viva-beo-card h4 {
  margin: 1rem 0 0.75rem;
  color: #111827;
  font-size: 0.875rem;
}

.viva-beo-row {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.875rem;
}

.viva-beo-row em {
  color: #0E6B72;
  font-style: normal;
  font-weight: 700;
}

.viva-beo-card button {
  width: 100%;
  margin-top: 1rem;
  border: 0;
  border-radius: 0.625rem;
  background: #390D04;
  color: #ffffff;
  font-weight: 800;
  padding: 0.875rem 1rem;
}

.viva-operations-detail--legacy {
  display: none;
}

.viva-operations-detail {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .viva-operations-detail {
    padding: 4rem 0;
  }
}

.viva-operations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}

.viva-operations-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 126, 139, 0.25);
  color: #6de0ed;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.viva-operations-detail h2 {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.1112;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.viva-operations-detail > .viva-operations-grid > div:first-child > p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.viva-operations-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 0;
}

.viva-operations-cards .viva-operation-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.viva-operation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(13, 126, 139, 0.2);
  color: #6de0ed;
}

.viva-operation-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.viva-operations-cards h3 {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.viva-operations-cards p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.4286;
  margin: 0;
}

.viva-beo-window {
  overflow: hidden;
  border-radius: 1rem;
  background: #f8fafc;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.viva-beo-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #e2e8f0;
}

.viva-beo-chrome i {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.viva-beo-chrome i:nth-child(1) {
  background: #f87171;
}

.viva-beo-chrome i:nth-child(2) {
  background: #facc15;
}

.viva-beo-chrome i:nth-child(3) {
  background: #4ade80;
}

.viva-beo-chrome span {
  flex: 1;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
  background: #ffffff;
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.75rem;
}

.viva-beo-window .viva-beo-card {
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}

.viva-beo-window .viva-beo-card h3,
.viva-beo-window .viva-beo-card h4,
.viva-beo-window .viva-beo-card p,
.viva-beo-window .viva-beo-card small {
  margin: 0;
}

.viva-beo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 0.5rem;
  border-bottom: 2px solid #0D7E8B;
}

.viva-beo-header h3 {
  color: #0D7E8B;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.viva-beo-header p {
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin: 0.125rem 0 0;
}

.viva-beo-header strong {
  border-radius: 999px;
  background: #0D7E8B;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
}

.viva-beo-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.viva-beo-meta small {
  display: inline-flex;
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1rem;
}

.viva-beo-meta small:last-child {
  color: #F59022;
  font-weight: 600;
}

.viva-beo-table {
  padding: 0.75rem 1.25rem;
}

.viva-beo-table h4 {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.viva-beo-table-head,
.viva-beo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4rem 5.5rem;
  align-items: center;
  gap: 0.75rem;
}

.viva-beo-table-head {
  border-bottom: 1px solid #f1f5f9;
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  padding: 0.3125rem 0;
}

.viva-beo-table-head span:nth-child(2),
.viva-beo-row span {
  text-align: center;
}

.viva-beo-table-head span:last-child,
.viva-beo-row em {
  justify-self: end;
}

.viva-beo-window .viva-beo-row {
  border-top: 0;
  border-bottom: 1px solid #f8fafc;
  margin-bottom: 0;
  padding: 0.4375rem 0;
  font-size: 0.75rem;
  line-height: 1rem;
}

.viva-beo-row b {
  color: #374151;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}

.viva-beo-row span {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1rem;
}

.viva-beo-row em {
  border-radius: 999px;
  background: #e6f2f5;
  color: #0D7E8B;
  font-size: 0.75rem;
  line-height: 1rem;
  font-style: normal;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
}

.viva-beo-row em.pending {
  background: #fff7ed;
  color: #F59022;
}

.viva-beo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.25rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.viva-beo-footer h4 {
  color: #374151;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  margin: 0;
}

.viva-beo-footer small {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1rem;
}

.viva-beo-progress {
  width: 6rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #e5e7eb;
}

.viva-beo-progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: #0D7E8B;
}

.viva-beo-footer button {
  width: auto;
  margin: 0;
  border: 0;
  border-radius: 0.5rem;
  background: #F59022;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
}

.detail-demo-cta {
  text-align: center;
}

.detail-demo-cta .container {
  max-width: 54rem;
}

.page-slug-viva-mice .detail-demo-cta .container {
  max-width: 64rem;
  padding: 4rem;
  border-radius: 1rem;
  background: #390D04;
  color: #ffffff;
}

.detail-demo-cta h2 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-slug-viva-mice .detail-demo-cta h2 {
  color: #ffffff;
}

.detail-demo-cta p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 42rem;
}

.page-slug-viva-mice .detail-demo-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.detail-demo-cta .btn-primary {
  margin: 0 auto 1rem;
}

.detail-demo-cta span {
  display: block;
  color: #6b7280;
  font-size: 0.875rem;
}

.wb-case-study,
.wb-contact-section {
  padding: 5rem 0;
}

.wb-case-study,
.wb-contact-section {
  background: #f9fafb;
}

.wb-case-study {
  background: #ffffff;
  padding: 3rem 0;
}

.wb-contact-section {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .wb-case-study {
    padding: 4rem 0;
  }

  .wb-contact-section {
    padding: 4rem 0;
  }
}

.wb-case-study .max-w-7xl {
  max-width: 64rem;
}

.wb-case-card {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border: 0;
  border-radius: 0.5rem;
  background: #390D04;
  color: #ffffff;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .wb-case-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 3rem;
  }

  .wb-case-card > div:first-child {
    width: 66.6667%;
  }

  .wb-case-card > blockquote {
    width: 33.3333%;
  }
}

.wb-case-card h2,
.wb-contact-section h2 {
  font-size: 2.25rem;
  line-height: 1.1112;
  color: #111827;
  margin-bottom: 1rem;
}

.wb-case-card h2 {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.wb-case-card p,
.wb-contact-section p {
  color: #4b5563;
  line-height: 1.65;
}

.wb-case-card > div:first-child > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 2rem;
}

.wb-case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}

.wb-case-stats span {
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.wb-case-stats span:first-child {
  color: #D4A08D;
}

.wb-case-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.wb-case-card blockquote {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 1.5rem;
}

.wb-case-card blockquote p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.4286;
  font-style: italic;
  margin: 0 0 1rem;
}

.wb-case-card cite {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 0.75rem;
  align-items: center;
  color: #ffffff;
  font-style: normal;
}

.wb-case-card cite span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

.wb-case-card cite strong {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.wb-case-card cite small {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1rem;
}

.wb-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
}

.wb-contact-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.wb-contact-list div {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.25rem;
}

.wb-contact-list span {
  display: block;
  color: #7C3A28;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.wb-contact-list a {
  color: #111827;
  font-weight: 800;
}

.wb-contact-list small {
  display: block;
  color: #6b7280;
  margin-top: 0.35rem;
}

.wb-contact-form {
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.wb-contact-form .form-field {
  gap: 0;
}

.wb-contact-form .form-field.full-width,
.wb-contact-form .full-width {
  grid-column: 1 / -1;
}

.wb-contact-form label {
  display: block;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  background: #ffffff;
  color: #111827;
  font: inherit;
  padding: 0.75rem 1rem;
  min-height: 3.125rem;
}

.contact-form textarea {
  min-height: 8rem;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7C3A28;
  box-shadow: 0 0 0 3px rgba(124, 58, 40, 0.12);
}

@media (max-width: 900px) {
  .viva-feature-hero,
  .viva-operations-grid,
  .wb-case-card,
  .wb-contact-grid {
    grid-template-columns: 1fr;
  }

  .viva-feature-grid,
  .viva-integrations-grid {
    grid-template-columns: 1fr;
  }

  .viva-trusted__logos {
    gap: 1.75rem;
  }

  .viva-timeline {
    grid-template-columns: 1fr;
  }

  .viva-timeline::before {
    display: none;
  }

  .wb-case-stats {
    grid-template-columns: 1fr;
  }

  .wb-contact-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* ========================================
   PIXEL MATCH: KACI REDESIGNED HTML
   ======================================== */
:root {
  --bg: #ffffff;
  --ink: #000000;
  --muted: #4b5563;
  --primary-50:  #FDF8F3;
  --primary-100: #F5E6E0;
  --primary-200: #E6C4B8;
  --primary-300: #D4A08D;
  --primary-400: #B87A65;
  --primary-500: #9A5742;
  --primary-600: #7C3A28;
  --primary-700: #5E2618;
  --primary-800: #42170C;
  --primary-900: #390D04;
}

body {
  color: #000000;
  background: #ffffff;
  line-height: 1.5;
}

.site-content {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .px-6 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(57, 13, 4, 0.08);
  box-shadow: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(57, 13, 4, 0.12);
  box-shadow: none;
}

.site-header__inner {
  min-height: 5rem;
  max-width: none;
  padding: 0;
}

.site-brand {
  gap: 1rem;
}

.site-brand__logo {
  width: 50px;
  height: 64px;
  object-fit: contain;
}

.site-brand-line1 {
  color: #111827;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-brand-line2 {
  color: #111827;
  font-size: 0.85rem;
  font-weight: 600;
}

.main-nav ul {
  gap: 2rem;
}

@media (max-width: 1040px) {
  .main-nav,
  .site-actions .site-cta {
    display: none !important;
  }
}

@media (min-width: 1041px) {
  .main-nav {
    display: flex;
  }

  .site-actions .site-cta.hidden {
    display: inline-flex !important;
  }

  .mobile-toggle,
  .mobile-panel {
    display: none !important;
  }
}

.nav-link {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.nav-link:hover,
.nav-link.is-active {
  color: #390D04;
}

.nav-link::after {
  bottom: -4px;
}

.site-cta {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  color: #ffffff;
  background: #390D04;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.site-cta:hover {
  background-color: #6B2D1A;
}

.lang-toggle {
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.lang-toggle:hover {
  background: #e5e7eb;
}

.lang-option.active {
  background: #390D04;
  color: #ffffff;
}

.mobile-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #1f2937;
}

.mobile-panel {
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(57, 13, 4, 0.08);
}

.mobile-nav-stack {
  gap: 0.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  color: #4b5563;
  font-weight: 500;
  border-radius: 6px;
}

.mobile-nav-link:hover {
  background-color: rgba(57, 13, 4, 0.04);
  color: #390D04;
}

.mobile-nav-link.is-active {
  background-color: rgba(57, 13, 4, 0.08);
  color: #390D04;
  font-weight: 600;
}

@media (max-width: 720px) {
  .site-brand-line1 {
    font-size: 1rem;
  }

  .site-brand-line2 {
    font-size: 0.75rem;
  }
}

.hero-section {
  background-color: #390D04;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.hero-grid {
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
  }
}

.hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1;
    min-height: 144px;
  }
}

.hero-title .highlight {
  color: #E6C4B8;
}

.hero-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.5555556;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  gap: 1rem;
}

.hero-buttons .btn-primary,
.btn-hero-ghost {
  min-height: 58px;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-trust {
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-avatar {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.hero-trust-text {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hero-aside-card {
  display: flex;
  flex-direction: column;
  width: 360px;
  min-height: 457px;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.hero-aside-title {
  color: #7C3A28;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-step {
  gap: 1rem;
}

.hero-step-number {
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
}

.hero-step-title {
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.hero-step-desc,
.hero-phone-label {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1rem;
}

.hero-step-line {
  height: 1rem;
  background: #e5e7eb;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero-phone-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: #7C3A28;
}

.hero-phone-number {
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hero-badge {
  color: #7C3A28;
  background: #FDF8F3;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.25rem 0.75rem;
}

.hero-aside-footer {
  margin-top: auto;
}

@media (max-width: 1023px) {
  .hero-aside-card {
    display: none;
  }
}

.services-section {
  background: #ffffff;
  padding: 4rem 0;
}

@media (max-width: 767px) {
  .services-section {
    padding: 3rem 0;
  }
}

.services-header {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.services-header h2 {
  color: #111827;
  font-size: 2.25rem;
  line-height: 1.1112;
  letter-spacing: 0;
}

.services-header .section-desc {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-top: 0.75rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  color: inherit;
  box-shadow: none;
}

.service-card:hover {
  border-color: #390D04;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(57, 13, 4, 0.08);
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #5E2618;
}

.service-card__logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.service-card__title {
  color: #111827;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-card__cta {
  color: #5E2618;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.site-footer {
  background: #390D04;
  color: #ffffff;
  padding: 4rem 0;
}

.footer-grid {
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-brand__logo {
  margin-bottom: 1.5rem;
}

.footer-brand__logo img.brand-mark-footer {
  height: 5rem;
}

.footer-brand__tagline {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-column li {
  color: #E6C4B8;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #E6C4B8;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.footer-column a:hover {
  color: #D4A08D;
}

.footer-bottom {
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #42170C;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.footer-social {
  gap: 0.75rem;
  margin-top: 0;
}

.footer-social__link {
  width: 2.25rem;
  height: 2.25rem;
  background: #42170C;
  color: #ffffff;
}

.footer-social__link:hover {
  background: #B8933F;
  transform: none;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.footer-badge:hover {
  background: transparent;
  border-color: transparent;
}

.footer-badge__label {
  color: #D4A08D;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}

.footer-badge__logo {
  height: 1.5rem;
  width: auto;
}

.relocation-intake-section {
  background: #ffffff;
  padding: 5rem 0;
  border-top: 1px solid #f3f4f6;
}

body:not(.home) .section-reveal {
  opacity: 1;
  transform: none;
}

.section-reveal {
  opacity: 1 !important;
  transform: none !important;
}

[hidden] {
  display: none !important;
}

.relocation-intake-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  padding: 2rem;
}

.relocation-intake-top {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.relocation-intake-progress-track {
  height: 0.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: #f3f4f6;
  margin-bottom: 2rem;
}

.relocation-intake-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: #390D04;
  transition: width 0.2s ease;
}

.relocation-intake-status {
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: #f8f1ee;
  color: #390D04;
  font-size: 0.875rem;
}

.relocation-intake-step {
  border: 0;
  padding: 0;
  margin: 0;
}

.relocation-intake-step legend {
  color: #111827;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.relocation-intake-options {
  display: grid;
  gap: 0.75rem;
}

.relocation-intake-step[data-step="1"] .relocation-intake-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.relocation-intake-options label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.relocation-intake-options label:has(input:checked) {
  background: #6B2A1A;
  border-color: #6B2A1A;
  color: #ffffff;
}

.relocation-intake-options input {
  accent-color: #390D04;
}

.relocation-intake-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.relocation-intake-fields label {
  display: grid;
  gap: 0.35rem;
  color: #111827;
  font-weight: 700;
}

.relocation-intake-fields input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font: inherit;
}

.relocation-intake-fields__company,
.relocation-intake-consent {
  grid-column: 1 / -1;
}

.relocation-intake-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 0.75rem !important;
  font-weight: 600 !important;
}

.relocation-intake-consent input {
  width: auto;
  margin-top: 0.25rem;
}

.relocation-intake-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.relocation-intake-secondary {
  min-height: 3.25rem;
  padding: 0 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #374151;
  font-weight: 700;
}

.relocation-intake-secondary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .relocation-intake-section {
    padding: 4rem 0;
  }

  .relocation-intake-card {
    padding: 1.25rem;
  }

  .relocation-intake-step legend {
    font-size: 1.25rem;
  }

  .relocation-intake-nav {
    flex-direction: row;
  }

  .relocation-intake-step[data-step="1"] .relocation-intake-options {
    grid-template-columns: 1fr;
  }

  .relocation-intake-fields {
    grid-template-columns: 1fr;
  }

  .relocation-intake-nav .btn-primary {
    justify-content: center;
  }
}

/* Subpage hero parity with redesigned HTML */
.subpage-hero {
  background: #390D04;
  color: #ffffff;
  padding: 8rem 0 5rem;
}

.subpage-hero-centered {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.subpage-hero-title {
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 auto;
}

.subpage-hero-body {
  max-width: 42rem;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.5556;
}

.subpage-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.subpage-hero-actions .btn-primary {
  min-width: 10rem;
  height: 3.625rem;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.subpage-hero-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.subpage-hero-actions .btn-hero-ghost {
  min-width: 10rem;
}

.subpage-country-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 4rem;
}

.subpage-country-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  height: 3rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
}

.subpage-country-pills b {
  color: #080f1f;
  font-size: 0.875rem;
  font-weight: 500;
}

.subpage-hero-viva-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(34rem, 36rem);
  align-items: center;
  gap: 5rem;
}

.subpage-hero-viva-logo {
  width: 8.75rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.subpage-hero-viva-title {
  max-width: 36rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
}

.subpage-hero-viva-body {
  max-width: 34rem;
  color: #d1d5db;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 1.5rem 0 0;
}

.subpage-hero-viva-copy .subpage-hero-actions {
  justify-content: flex-start;
  margin-top: 3rem;
}

.subpage-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 28rem;
  margin-top: 2.75rem;
}

.subpage-hero-stats div {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.subpage-hero-stats div:last-child {
  border-right: 0;
}

.subpage-hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
}

.subpage-hero-stats span {
  display: block;
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.subpage-dashboard {
  overflow: hidden;
  border-radius: 0.875rem;
  background: #ffffff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.subpage-dashboard-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 1rem;
  background: #e5e7eb;
}

.subpage-dashboard-top .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }

.subpage-dashboard-url {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background: #ffffff;
  color: #8b95a5;
  font-size: 0.75rem;
}

.subpage-dashboard-body {
  display: grid;
  grid-template-columns: 8rem 1fr;
  min-height: 18rem;
}

.subpage-dashboard-sidebar {
  padding: 1rem;
  border-right: 1px solid #e5e7eb;
  color: #64748b;
  font-size: 0.75rem;
}

.subpage-dashboard-logo {
  width: 4rem;
  height: auto;
  margin: 0 auto 0.875rem;
}

.subpage-dashboard-sidebar span,
.subpage-dashboard-sidebar strong {
  display: block;
  padding: 0.45rem 0.5rem;
  border-radius: 0.25rem;
}

.subpage-dashboard-sidebar strong {
  background: #07858f;
  color: #ffffff;
}

.subpage-dashboard-sidebar em {
  color: #fb923c;
  font-style: normal;
  font-weight: 700;
}

.subpage-calendar {
  min-width: 0;
  color: #334155;
}

.subpage-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3rem;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.subpage-calendar-head strong,
.subpage-calendar-head span {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 0.75rem;
}

.subpage-calendar-head b {
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  background: #07858f;
  color: #ffffff;
  font-size: 0.75rem;
}

.subpage-calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.subpage-calendar-grid span {
  min-height: 3.8rem;
  padding: 0.7rem 0.35rem;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  color: #94a3b8;
  font-size: 0.75rem;
}

.subpage-calendar-grid span:nth-child(6),
.subpage-calendar-grid span:nth-child(7),
.subpage-calendar-grid span:nth-child(8),
.subpage-calendar-grid span:nth-child(10),
.subpage-calendar-grid span:nth-child(11),
.subpage-calendar-grid span:nth-child(12),
.subpage-calendar-grid span:nth-child(14) {
  color: #ffffff;
  font-weight: 700;
}

.subpage-calendar-grid span:nth-child(6),
.subpage-calendar-grid span:nth-child(12) { background: #07858f; }
.subpage-calendar-grid span:nth-child(7),
.subpage-calendar-grid span:nth-child(14) { background: #3b82f6; }
.subpage-calendar-grid span:nth-child(8),
.subpage-calendar-grid span:nth-child(10) { background: #fb923c; }
.subpage-calendar-grid span:nth-child(11) { background: #dc2626; }

.subpage-dashboard-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  background: #07858f;
  color: #ffffff;
}

.subpage-dashboard-footer strong,
.subpage-dashboard-footer span {
  display: block;
  font-size: 0.75rem;
}

.subpage-dashboard-footer b,
.subpage-dashboard-footer button {
  border: 0;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.subpage-dashboard-footer b {
  background: rgba(255, 255, 255, 0.25);
}

.subpage-dashboard-footer button:first-of-type {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.subpage-dashboard-footer button:last-of-type {
  background: #f97316;
  color: #ffffff;
}

@media (max-width: 1023px) {
  .subpage-hero {
    padding: 6rem 0 3.75rem;
  }

  .subpage-hero-title {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  .subpage-hero-body {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.625;
  }

  .subpage-hero-actions {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .subpage-hero-actions .btn-primary,
  .subpage-hero-actions .btn-hero-ghost {
    width: 100%;
  }

  .subpage-country-pills {
    margin-top: 3rem;
    gap: 0.75rem;
  }

  .subpage-country-pills span {
    height: 3rem;
  }

  .subpage-hero-viva-grid {
    display: block;
  }

  .subpage-hero-viva-logo {
    width: 9rem;
  }

  .subpage-hero-viva-title {
    font-size: 1.125rem;
    line-height: 1.35;
  }

  .subpage-hero-viva-body {
    font-size: 1rem;
    line-height: 1.5;
  }

  .subpage-hero-viva-copy .subpage-hero-actions {
    align-items: stretch;
    margin-top: 2rem;
  }

  .subpage-hero-stats {
    grid-template-columns: repeat(3, 8.5rem);
    overflow: hidden;
    max-width: none;
    margin-top: 2.5rem;
  }

  .subpage-hero-stats div {
    padding-right: 1rem;
  }

  .subpage-dashboard {
    width: 100%;
    margin-top: 3rem;
    transform: none;
  }

  .subpage-dashboard-body {
    grid-template-columns: 6.25rem minmax(0, 1fr);
  }

  .subpage-dashboard-sidebar {
    padding: 0.75rem 0.5rem;
  }

  .subpage-dashboard-logo {
    width: 3.5rem;
  }

  .subpage-calendar-grid span {
    min-height: 3.25rem;
    padding: 0.55rem 0.25rem;
    font-size: 0.675rem;
  }

  .subpage-dashboard-footer {
    grid-template-columns: 1fr;
  }

  .subpage-dashboard-footer b,
  .subpage-dashboard-footer button {
    width: max-content;
  }
}
