/* ============================================================================
   RITUAL SERVICE24 CYPRUS - MEDITERRANEAN LUXURY LIGHT DESIGN
   Complete CSS - Premium Funeral Repatriation Service
   ============================================================================ */

/* ============================================================================
   1. VARIABLES & RESET
   ============================================================================ */

:root {
  /* Mediterranean Luxury Light Palette */
  --bg-deep: #F7F4EF;
  --bg-surface: #FFFFFF;
  --bg-elevated: #EDE8DF;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --gold: #A67A3C;
  --gold-soft: #D4A96A;
  --gold-glow: rgba(196, 147, 90, 0.12);
  --text: #2C2418;
  --text-muted: #6B6254;
  --text-dim: #6E6459;
  --border: rgba(27, 77, 110, 0.10);
  --border-strong: rgba(196, 147, 90, 0.30);
  --white: #FFFFFF;
  --primary: #1B4D6E;
  --primary-dark: #0F3249;
  --terracotta: #B86F4A;
  --olive: #6B7D3A;
  --sea: #3A8FA7;

  /* Motion & Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 700ms;

  /* Spacing & Sizing */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Modern Effects */
  --gradient-mesh-warm: conic-gradient(from 45deg at 30% 70%, rgba(166,122,60,0.06), transparent 60%);
  --gradient-mesh-cool: conic-gradient(from 220deg at 70% 30%, rgba(27,77,110,0.05), transparent 60%);
  --glass-border: 1px solid rgba(255,255,255,0.18);
  --glass-blur: blur(20px) saturate(180%);

  /* Z-Index Scale */
  --z-hero: 1;
  --z-floating-cta: 20;
  --z-social-proof: 22;
  --z-scroll-top: 25;
  --z-chat: 30;
  --z-header: 40;
  --z-lang-drop: 50;
  --z-cookie: 55;
  --z-modal: 60;
  --z-skip: 100;
  --z-nav-mobile: 999;
  --z-nav-open: 1000;
  --z-progress: 1001;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================================================
   2. TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant', Georgia, serif;
  color: var(--text);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 1rem 0;
}

strong {
  color: var(--text);
  font-weight: 600;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration-base) var(--ease-out);
}

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

/* ============================================================================
   3. UTILITIES
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: var(--z-skip);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================================
   4. LANGUAGE BAR
   ============================================================================ */

.lang-bar { display: none; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-selector {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
  background: transparent;
}

.lang-current:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(27, 77, 110, 0.04);
}

.lang-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--duration-base) var(--ease-out);
}

.lang-drop {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 150px;
  display: none;
  flex-direction: column;
  z-index: var(--z-lang-drop);
  margin-top: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.lang-drop.open,
.lang-drop.active {
  display: flex;
}

.lang-drop.open .lang-caret,
.lang-drop.active .lang-caret {
  transform: rotate(180deg);
}

.lang-opt {
  padding: 10px 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  border-bottom: 1px solid rgba(27, 77, 110, 0.06);
}

.lang-opt:last-child {
  border-bottom: none;
}

.lang-opt:hover,
.lang-opt.active {
  background-color: var(--gold-glow);
  color: var(--primary);
}

/* ============================================================================
   5. HEADER
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  min-height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.logo:hover {
  opacity: 0.85;
}

.logo-svg {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
}

.logo-svg circle {
  transform-origin: 50% 50%;
  animation: logo-spin 12s linear infinite;
}

@keyframes logo-spin {
  from { transform: rotate(-90deg); }
  to { transform: rotate(270deg); }
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-24 {
  color: var(--gold);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
  margin-top: 2px;
}

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

.mobile-lang-row {
  display: flex;
  gap: 16px;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-lang-row a {
  font-size: 1.6rem !important;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.mobile-lang-row a:hover {
  background: var(--bg-elevated);
}

.mobile-phone-link {
  margin-top: 0.5rem;
  font-size: 1.2rem !important;
  color: var(--primary) !important;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  min-height: 44px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(15, 50, 73, 0.2);
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 50, 73, 0.25);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  justify-content: center;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.burger.open span:nth-child(1),
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger.open span:nth-child(2),
.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3),
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================================
   6. HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1a2e;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 45deg at 20% 80%, rgba(166,122,60,0.08), transparent 40%),
    radial-gradient(ellipse at 70% 30%, rgba(10, 26, 46, 0.5) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(10, 26, 46, 0.7) 0%, rgba(10, 26, 46, 0.35) 25%, rgba(10, 26, 46, 0.5) 55%, rgba(10, 26, 46, 0.95) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img video,
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 100px 24px 24px;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}

/* Eyebrow with decorative lines */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  animation: hero-up 0.8s var(--ease-out) 0ms both;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  animation: hero-up 0.8s var(--ease-out) 150ms both;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
  animation: hero-up 0.8s var(--ease-out) 300ms both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hero-up 0.8s var(--ease-out) 450ms both;
  margin-top: 8px;
}

/* Bottom stats bar */
.hero-bottom {
  width: 100%;
  padding: 20px 0;
  animation: hero-up 0.8s var(--ease-out) 600ms both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-n {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-star {
  color: var(--gold);
  font-size: 0.9rem;
  margin-left: 2px;
}

.hero-stat-l {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   7. BUTTONS
   ============================================================================ */

.btn {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  min-height: 48px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(27, 77, 110, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 77, 110, 0.3);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gold-glow);
  transition: all 200ms var(--ease-spring);
}

.btn-secondary {
  background-color: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27, 77, 110, 0.2);
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gold-glow);
  transition: all 200ms var(--ease-spring);
}

.btn-wa {
  background-color: #128C50;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
}

.btn-wa:hover {
  background-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.25);
}

.btn-wa:active {
  transform: scale(0.97);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(0.97);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  min-height: 52px;
}

.btn-more {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 0;
  text-decoration: underline;
  transition: color var(--duration-base) var(--ease-out);
}

.btn-more:hover {
  color: var(--gold);
}

/* ============================================================================
   8. SECTIONS
   ============================================================================ */

section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 48px 0;
  }
}

.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.sec-header h2 {
  margin-bottom: 20px;
}

.sec-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.sec-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.sec-header--light {
  color: var(--text);
}

.sec-header--light h2 {
  color: var(--text);
}

.sec-header--light p {
  color: var(--text-muted);
}

/* ============================================================================
   9. SITUATIONS (TWO-COLUMN CARDS)
   ============================================================================ */

.situations {
  background-color: var(--bg-deep);
}

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

@media (max-width: 768px) {
  .sit-grid {
    grid-template-columns: 1fr;
  }
}

.sit-card {
  container-type: inline-size;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 77, 110, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.sit-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 12px 40px rgba(27, 77, 110, 0.08),
    0 0 0 1px rgba(27, 77, 110, 0.04);
}

.sit-card:hover::before {
  opacity: 1;
}

.sit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #2a6f9e 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(27, 77, 110, 0.2);
}

.sit-card h3 {
  margin-bottom: 16px;
}

.sit-card p {
  margin-bottom: 24px;
}

.sit-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sit-prices span {
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
}

/* ============================================================================
   10. CALCULATOR
   ============================================================================ */

.calc-wrap {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.calc-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.calc-heading {
  margin-bottom: 32px;
}

.calc-heading h3 {
  margin-bottom: 8px;
}

.calc-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  gap: 0;
}

.cs-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--duration-base) var(--ease-out);
  font-weight: 500;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
}

.cs-tab:hover {
  color: var(--text);
}

.cs-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
  animation: fade-in var(--duration-base) var(--ease-out);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.calc-steps-bar {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
}

.cs-sep {
  width: 100%;
  height: 2px;
  background-color: var(--border);
  position: relative;
}

.cs-num {
  position: absolute;
  top: -16px;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: var(--bg-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
}

.cntry-btn,
.trans-btn {
  background-color: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  min-height: 48px;
  cursor: pointer;
  color: var(--text);
  transition: all var(--duration-base) var(--ease-out);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
}

.cntry-btn:hover,
.trans-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cntry-btn.selected,
.trans-btn.selected {
  border-color: var(--primary);
  background-color: rgba(27, 77, 110, 0.06);
  box-shadow: inset 0 0 0 1px rgba(27, 77, 110, 0.15);
}

.cntry-btn {
  margin-bottom: 12px;
  width: 100%;
}

.trans-btn {
  width: 100%;
  margin-bottom: 12px;
  gap: 12px;
}

.calc-result {
  background-color: rgba(27, 77, 110, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.calc-price-num {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.calc-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================================================
   11. PRICING SECTION
   ============================================================================ */

.pricing-sec {
  background-color: var(--bg-deep);
}

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

@media (max-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 77, 110, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow:
    0 12px 40px rgba(27, 77, 110, 0.1),
    0 0 0 1px rgba(27, 77, 110, 0.06);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 16px 48px rgba(196, 147, 90, 0.2);
  transform: scale(1.03);
  z-index: 1;
  margin-top: 8px;
  padding-top: 44px;
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #d4a85c 100%);
  color: var(--white);
  padding: 8px 28px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(196, 147, 90, 0.4);
  white-space: nowrap;
}

.price-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.price-name {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.price-val {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.price-card p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.price-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card li::before {
  content: '\2713';
  color: var(--olive);
  font-weight: 700;
}

.price-phone {
  color: var(--primary);
  font-weight: 600;
  margin-top: 24px;
  display: block;
}

.price-factors {
  margin-top: 48px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.price-factors h3 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.factors-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.factor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  transition: border-color var(--duration-base) var(--ease-out);
}

.factor:hover {
  border-color: var(--border-strong);
}

.factor-icon {
  color: var(--primary);
  margin-bottom: 4px;
}

.factor strong {
  color: var(--text);
}

.factor span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================================
   12. STATS SECTION
   ============================================================================ */

.stats-sec {
  background: var(--primary-dark);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.stats-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('stats-bg.webp') center center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.stats-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(196, 147, 90, 0.1) 0%, transparent 60%),
    linear-gradient(to right, rgba(10, 30, 50, 0.7) 0%, rgba(10, 30, 50, 0.3) 50%, rgba(10, 30, 50, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  padding: 24px;
}

.stat-n {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-l {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-s {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================================
   13. REVIEWS SECTION
   ============================================================================ */

.reviews-sec {
  background-color: var(--bg-elevated);
}

.google-reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.grb-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
}

.grb-text {
  font-size: 1rem;
  color: var(--text-muted);
}

.grb-text strong {
  color: var(--gold);
  font-size: 1.3rem;
}

.grb-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .google-reviews-badge {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

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

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.rv-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.rv-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 77, 110, 0.08);
}

.rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rv-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(27, 77, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.rv-name {
  font-weight: 600;
  color: var(--text);
}

.rv-route {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rv-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.rv-card p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.rv-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================================
   14. COUNTRIES SECTION
   ============================================================================ */

.countries-sec {
  background-color: var(--bg-deep);
}

/* Route image cards */
.ctry-routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.ctry-route-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ctry-route-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.ctry-route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ctry-route-card:hover img {
  transform: scale(1.05);
}

.ctry-route-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .ctry-routes {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .ctry-route-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .ctry-route-card {
    flex: 0 0 85%;
  }
}

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

@media (max-width: 768px) {
  .ctry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ctry-grid {
    grid-template-columns: 1fr;
  }
}

.ctry-col h3 {
  color: var(--primary);
  font-family: 'Cormorant', Georgia, serif;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 600;
}

.ctry-col a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  transition: all var(--duration-base) var(--ease-out);
}

.ctry-col a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.ctry-more {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================================
   15. STEPS SECTION
   ============================================================================ */

.steps-sec {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.82)), url('office.webp') center/cover no-repeat;
}

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

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background-color: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
  padding-top: 48px;
}

.step-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 77, 110, 0.08);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
}

.step-card h4 {
  margin-bottom: 12px;
  color: var(--text);
}

.step-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================================
   16. SERVICES SECTION
   ============================================================================ */

.services-sec {
  background: linear-gradient(rgba(247, 244, 239, 0.88), rgba(247, 244, 239, 0.92)), url('services-room.webp') center/cover no-repeat;
  position: relative;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.svc-card {
  container-type: inline-size;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.svc-card:hover {
  border-color: var(--primary);
  border-top-color: var(--gold);
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 12px 40px rgba(27, 77, 110, 0.08),
    0 0 0 1px rgba(27, 77, 110, 0.04);
}

.svc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(27, 77, 110, 0.08), rgba(27, 77, 110, 0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.svc-card h4 {
  margin-bottom: 12px;
  color: var(--text);
}

.svc-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============================================================================
   17. FAQ SECTION
   ============================================================================ */

.faq-sec {
  background: linear-gradient(rgba(247, 244, 239, 0.78), rgba(247, 244, 239, 0.85)), url('cyprus-memorial.webp') center/cover no-repeat;
  background-color: var(--bg-deep);
}

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

.faq-extra {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background-color: transparent;
  border: none;
  text-align: left;
  color: var(--text);
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  font-family: 'Cormorant', Georgia, serif;
  transition: color var(--duration-base) var(--ease-out);
}

.faq-q:hover {
  color: var(--primary);
}

.faq-arrow {
  color: var(--primary);
  transition: transform var(--duration-base) var(--ease-out);
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-q[aria-expanded='true'] .faq-arrow {
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
  padding: 0;
}

.faq-a p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  padding: 8px 0;
  text-decoration: underline;
  font-size: 0.95rem;
  margin-top: 16px;
  transition: color var(--duration-base) var(--ease-out);
}

.faq-more-btn:hover {
  color: var(--gold);
}

/* ============================================================================
   18. CTA SECTION
   ============================================================================ */

.cta-sec {
  background: linear-gradient(135deg, rgba(15, 50, 73, 0.8) 0%, rgba(27, 77, 110, 0.85) 100%), url('cta-bg.webp') center/cover no-repeat;
  color: var(--white);
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  .cta-sec {
    padding: 64px 0;
  }
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-sec .btn {
  background-color: var(--gold);
  color: var(--white);
  border: 1.5px solid transparent;
}

.cta-sec .btn:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================================
   19. FOOTER
   ============================================================================ */

.site-footer {
  background-color: var(--primary-dark);
  border-top: none;
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.fcol h4 {
  color: var(--gold);
  font-family: 'Cormorant', Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

.fcol a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-base) var(--ease-out);
}

.fcol a:hover {
  color: var(--gold);
}

.fcol p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-eu {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  margin-top: 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ============================================================================
   20. CHAT WIDGET
   ============================================================================ */

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-chat);
}

.chat-panel {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  width: 360px;
  max-width: 90vw;
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 70vh;
}

.chat-panel.active {
  display: flex;
  animation: slide-up var(--duration-base) var(--ease-out);
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-panel-head {
  background-color: var(--primary);
  color: var(--white);
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-panel-head button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.chat-panel-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.chat-toggle-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-toggle-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.chat-countries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.chat-countries button {
  background-color: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: 12px;
  min-height: 44px;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  font-weight: 500;
  text-align: left;
}

.chat-countries button:hover {
  border-color: var(--primary);
  background-color: rgba(27, 77, 110, 0.05);
}

/* ============================================================================
   21. FLOATING CTA BAR
   ============================================================================ */

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: var(--z-floating-cta);
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.float-phone,
.float-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  min-height: 44px;
  padding: 8px 12px;
  transition: color var(--duration-base) var(--ease-out);
}

.float-phone {
  color: var(--primary);
}

.float-phone:hover {
  color: var(--gold);
}

.float-calc {
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 12px;
}

.float-calc:hover {
  color: var(--primary);
}

.float-wa {
  color: #25d366;
}

.float-wa:hover {
  color: #1fb855;
}

/* ============================================================================
   22. MODAL
   ============================================================================ */

.modal-bg {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: 24px;
}

.modal-bg.active {
  display: flex;
}

.modal-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modal-enter var(--duration-base) var(--ease-out);
}

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--duration-base) var(--ease-out);
}

.modal-close:hover {
  color: var(--primary);
  background: var(--bg-elevated);
}

.modal-body {
  padding: 0;
}

.modal-box h2 {
  margin-bottom: 24px;
  padding-right: 40px;
}

/* ============================================================================
   23. SVG ICONS
   ============================================================================ */

.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================================================
   24. SCROLL REVEAL ANIMATIONS
   ============================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slower) var(--ease-out), transform var(--duration-slower) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .sit-card,
.reveal.visible .price-card,
.reveal.visible .step-card,
.reveal.visible .svc-card,
.reveal.visible .stat-item,
.reveal.visible .rv-card {
  animation: child-reveal var(--duration-slower) var(--ease-out) both;
}

.reveal.visible .sit-card:nth-child(1),
.reveal.visible .price-card:nth-child(1),
.reveal.visible .step-card:nth-child(1),
.reveal.visible .svc-card:nth-child(1),
.reveal.visible .stat-item:nth-child(1),
.reveal.visible .rv-card:nth-child(1) { animation-delay: 0ms; }

.reveal.visible .sit-card:nth-child(2),
.reveal.visible .price-card:nth-child(2),
.reveal.visible .step-card:nth-child(2),
.reveal.visible .svc-card:nth-child(2),
.reveal.visible .stat-item:nth-child(2),
.reveal.visible .rv-card:nth-child(2) { animation-delay: 80ms; }

.reveal.visible .sit-card:nth-child(3),
.reveal.visible .price-card:nth-child(3),
.reveal.visible .step-card:nth-child(3),
.reveal.visible .svc-card:nth-child(3),
.reveal.visible .stat-item:nth-child(3),
.reveal.visible .rv-card:nth-child(3) { animation-delay: 160ms; }

.reveal.visible .sit-card:nth-child(4),
.reveal.visible .price-card:nth-child(4),
.reveal.visible .step-card:nth-child(4),
.reveal.visible .svc-card:nth-child(4),
.reveal.visible .stat-item:nth-child(4),
.reveal.visible .rv-card:nth-child(4) { animation-delay: 240ms; }

.reveal.visible .sit-card:nth-child(5),
.reveal.visible .price-card:nth-child(5),
.reveal.visible .step-card:nth-child(5),
.reveal.visible .svc-card:nth-child(5),
.reveal.visible .stat-item:nth-child(5),
.reveal.visible .rv-card:nth-child(5) { animation-delay: 320ms; }

.reveal.visible .sit-card:nth-child(6),
.reveal.visible .price-card:nth-child(6),
.reveal.visible .step-card:nth-child(6),
.reveal.visible .svc-card:nth-child(6),
.reveal.visible .stat-item:nth-child(6),
.reveal.visible .rv-card:nth-child(6) { animation-delay: 400ms; }

@keyframes child-reveal {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-driven animations (progressive enhancement for modern browsers) */
@supports (animation-timeline: view()) {
  .reveal.visible .sit-card,
  .reveal.visible .price-card,
  .reveal.visible .step-card,
  .reveal.visible .svc-card,
  .reveal.visible .rv-card {
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

/* ============================================================================
   25. ENHANCED HOVER STATES
   ============================================================================ */

button:focus-visible,
.btn:focus-visible,
a:focus-visible,
.ratgeber-card:focus-visible,
.price-card:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  transition: outline-offset 200ms var(--ease-spring), box-shadow 200ms var(--ease-spring);
}

/* ============================================================================
   26. RESPONSIVE DESIGN - TABLET (768px)
   ============================================================================ */

/* Mobile Dropdown Menu */
.mobile-dropdown {
  display: none;
  background: var(--white);
  border-bottom: 2px solid var(--gold-soft);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 8px 24px 20px;
}

.mobile-dropdown.open {
  display: block;
}

.mobile-dropdown > a {
  display: block !important;
  padding: 14px 8px;
  color: var(--text);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.mobile-dropdown > a:hover,
.mobile-dropdown > a:active {
  color: var(--primary);
  padding-left: 16px;
}

.mobile-dropdown > hr {
  border: none;
  border-top: 2px solid var(--bg-elevated);
  margin: 6px 0;
}

.mobile-dropdown .mobile-lang-row {
  display: flex !important;
  gap: 12px;
  padding: 12px 8px 6px;
}

.mobile-dropdown .mobile-lang-row a {
  font-size: 1.5rem !important;
  padding: 6px 8px !important;
  border-bottom: none !important;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.mobile-dropdown .mobile-lang-row a:hover {
  background: var(--bg-elevated);
  padding-left: 8px !important;
}

.mobile-dropdown .mobile-phone-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 8px !important;
  color: var(--primary) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-right {
    display: none;
  }


  h1 { font-size: clamp(2rem, 5vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-inner { padding: 110px 16px 16px; }
  .hero-content { gap: 16px; }
  .hero-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-btns .btn { width: 100%; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 2.5px; gap: 10px; }
  .hero-eyebrow-line { width: 24px; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { gap: 16px; padding: 16px 20px; flex-wrap: wrap; }
  .hero-stat-n { font-size: 1.3rem; }
  .hero-stat-divider { height: 24px; }
  .sit-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .ctry-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  .chat-widget { bottom: 100px; }
  .chat-panel { width: 100%; max-width: calc(100vw - 32px); }
  .floating-cta { flex-direction: column; align-items: stretch; }
  .floating-cta a { flex: 1; text-align: center; }
}

/* ============================================================================
   27. RESPONSIVE DESIGN - MOBILE (480px)
   ============================================================================ */

@media (max-width: 480px) {
  :root { font-size: 15px; }
  .container { padding: 0 16px; }
  h1 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.2rem, 4vw, 2rem); }
  h3 { font-size: clamp(1rem, 3vw, 1.3rem); }
  section { padding: 48px 0; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-stats { gap: 12px; padding: 14px 16px; border-radius: 12px; }
  .hero-stat-n { font-size: 1.15rem; }
  .hero-stat-l { font-size: 0.65rem; letter-spacing: 1px; }
  .hero-stat-divider { height: 20px; }
  .sec-header { margin-bottom: 40px; }

  .sit-grid,
  .price-grid,
  .ctry-grid,
  .steps-grid,
  .svc-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .sit-card, .price-card, .step-card, .svc-card { padding: 24px; }
  .calc-card { padding: 24px; }
  .modal-box { padding: 32px 24px; }
  .cta-sec { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .chat-panel { width: 100%; max-width: calc(100vw - 32px); }
  .lang-bar-inner { flex-direction: row; gap: 8px; }
  .lang-bar-contact { gap: 8px; }
  .lang-bar-avail { display: none; }
}

/* ============================================================================
   28. RESPONSIVE DESIGN - LARGE SCREENS (1440px+)
   ============================================================================ */

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-inner { padding: 120px 48px 48px; }
  section { padding: 100px 0; }
}

/* ============================================================================
   29. REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .logo-svg circle {
    animation: logo-spin 12s linear infinite !important;
    animation-duration: 12s !important;
    animation-iteration-count: infinite !important;
  }
}

/* ============================================================================
   29. PRINT STYLES
   ============================================================================ */

@media print {
  body { background-color: white; color: black; }
  .site-header, .burger, .chat-widget, .floating-cta, .lang-bar { display: none; }
  a { color: black; }
  .btn { display: none; }
  section { page-break-inside: avoid; }
}

/* ============================================================================
   30. UTILITY & HELPER CLASSES
   ============================================================================ */

.cf { clear: both; }

.cn, .cp, .cr, .cs-lbl, .ti, .td, .tn, .globe, .factor, .factor-icon,
.factors-wrap, .country-grid, .transport-grid, .tbadge, .tbadge-green,
.tbadge-std, .btn-call-block, .btn-price-cta, .fcol--brand { }

.tbadge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tbadge-green {
  background-color: rgba(37, 211, 102, 0.1);
  color: #1a9e4a;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.tbadge-std {
  background-color: rgba(27, 77, 110, 0.08);
  color: var(--primary);
  border: 1px solid var(--border);
}

.tbadge-express {
  background-color: rgba(255, 165, 0, 0.1);
  color: #d48c00;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

/* ============================================================================
   31. SOCIAL PROOF NOTIFICATIONS
   ============================================================================ */

.social-proof {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: var(--z-social-proof);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}

.social-proof.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sp-inner {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  max-width: 380px;
}

.sp-flag { font-size: 1.3rem; flex-shrink: 0; }
.sp-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.sp-time { font-size: 0.7rem; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .social-proof { left: 12px; right: 12px; bottom: 140px; }
  .sp-inner { max-width: 100%; }
}

/* ============================================================================
   32. PARTNER LOGOS STRIP
   ============================================================================ */

.partners-sec {
  background-color: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--duration-base) var(--ease-out);
}

.partner-item:hover { color: var(--primary); }

.partner-icon {
  color: var(--primary);
  opacity: 0.5;
  transition: opacity var(--duration-base) var(--ease-out);
}

.partner-item:hover .partner-icon { opacity: 1; }

@media (max-width: 768px) {
  .partners-grid { gap: 24px; }
  .partner-name { font-size: 0.7rem; }
}

/* ============================================================================
   33. SCROLL PROGRESS BAR
   ============================================================================ */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-progress);
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--sea));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================================
   34. TRUST TICKER
   ============================================================================ */

.trust-ticker {
  background-color: var(--primary);
  border-bottom: none;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.trust-ticker.visible {
  height: 38px;
  opacity: 1;
}

.trust-ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.trust-ticker-track:hover { animation-play-state: paused; }

.trust-tick {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================================
   35. COOKIE CONSENT
   ============================================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background-color: var(--white);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  animation: slide-up var(--duration-base) var(--ease-out);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.cookie-inner {
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  min-width: 200px;
}

.cookie-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cookie-accept {
  padding: 10px 24px;
  font-size: 0.85rem;
  min-height: 40px;
}

.cookie-link {
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================================
   36. SCROLL TO TOP
   ============================================================================ */

.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: var(--z-scroll-top);
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-base) var(--ease-out);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }

.scroll-top:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================================
   37. CALLBACK FORM SECTION
   ============================================================================ */

.callback-sec {
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.82)), url('cyprus-coast.webp') center/cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.callback-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.callback-text { margin-bottom: 32px; }

.callback-text h2 { margin-bottom: 12px; }

.callback-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 16px auto 0;
}

.callback-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .callback-fields { grid-template-columns: 1fr; }
}

.callback-fields input {
  background-color: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Jost', sans-serif;
  transition: border-color var(--duration-base) var(--ease-out);
  min-height: 48px;
}

.callback-fields input::placeholder { color: var(--text-dim); }
.callback-fields input:focus { outline: none; border-color: var(--primary); }
.callback-submit { width: 100%; }
.callback-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; }
.callback-success p { color: var(--primary); font-size: 1.1rem; font-weight: 600; }

/* ============================================================================
   38. COUNTRY GRID & TRANSPORT GRID LAYOUT
   ============================================================================ */

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-call-block { width: 100%; margin-top: 24px; }
.btn-price-cta { width: 100%; margin-top: 16px; }

/* ============================================================================
   39. ADJUSTED MOBILE FOR NEW ELEMENTS
   ============================================================================ */

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-btns { width: 100%; justify-content: center; }
  .scroll-top { bottom: 140px; }
  .trust-ticker.visible { height: 32px; }
  .trust-tick { padding: 6px 24px; font-size: 0.65rem; }
}

/* ============================================================================
   40. TEAM SECTION
   ============================================================================ */

.team-sec { background-color: var(--bg-deep); }

/* --- Founder hero block --- */
.team-hero-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.team-hero-photo {
  position: relative;
  overflow: hidden;
}

.team-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.team-hero-block:hover .team-hero-photo img {
  filter: brightness(1);
  transform: scale(1.02);
}

.team-hero-content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.team-hero-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.team-hero-name {
  font-size: 2rem;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.2;
}

.team-hero-quote {
  font-style: italic;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 8px 0;
}

.team-hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.thv {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-deep);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.thv::before {
  content: '✓';
  font-size: 0.7rem;
  font-weight: 700;
}

/* --- Bottom row: company + stats + group photo --- */
.team-bottom-row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: center;
}

.team-company-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.team-logo svg { flex-shrink: 0; }
.tcc-name { font-family: 'Cormorant', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); }
.tcc-legal { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

.team-stats-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.tsr {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
  min-width: 90px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tsr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.tsr-n {
  display: block;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.tsr-l {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-group-photo {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.team-group-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.team-group-photo:hover img {
  transform: scale(1.015);
}

@media (max-width: 768px) {
  .team-hero-block { grid-template-columns: 1fr; }
  .team-hero-photo { max-height: 360px; }
  .team-hero-content { padding: 32px 24px; }
  .team-hero-name { font-size: 1.6rem; }
  .team-hero-quote { font-size: 1.05rem; }
  .team-bottom-row { grid-template-columns: 1fr; }
  .team-stats-row { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .team-hero-content { padding: 24px 20px; }
  .team-hero-name { font-size: 1.4rem; }
  .team-stats-row { gap: 10px; }
  .tsr { padding: 12px 16px; min-width: 70px; }
  .tsr-n { font-size: 1.25rem; }
}

/* ============================================================================
   41. GUIDES / RATGEBER
   ============================================================================ */

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

@media (max-width: 768px) {
  .ratgeber-grid { grid-template-columns: 1fr; }
}

.ratgeber-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ratgeber-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 77, 110, 0.08);
}

.ratgeber-tag {
  display: inline-block;
  background-color: rgba(27, 77, 110, 0.08);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.ratgeber-card h2 { font-size: 1.3rem; line-height: 1.3; }
.ratgeber-card p { flex: 1; }
.ratgeber-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* ============================================================================
   42. ARTICLE PAGES
   ============================================================================ */

.article-sec { padding: 120px 0 80px; }
.article-content { max-width: 720px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.article-back { color: var(--primary); font-weight: 600; font-size: 0.85rem; }

.article-tag {
  display: inline-block;
  background-color: rgba(27, 77, 110, 0.08);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.article-content h1 { margin-bottom: 24px; }

.article-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 48px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.article-content h2 { margin-top: 48px; margin-bottom: 20px; font-size: 1.6rem; }
.article-content h3 { margin-top: 32px; margin-bottom: 12px; font-size: 1.2rem; }
.article-content p { margin-bottom: 16px; }

.checklist { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }

.check-item {
  display: flex;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.check-num {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.check-item strong { display: block; margin-bottom: 4px; }
.check-item p { margin: 0; font-size: 0.9rem; }

.doc-list { list-style: none; margin: 24px 0; padding: 0; }

.doc-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.doc-list li::before {
  content: '\2713';
  color: var(--olive);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }

.article-table th,
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.article-table th {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
