/* ============================================================
   LANDIS Theme — theme.css
   ============================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
  --color-brand-950: #052e16;
  --color-brand-900: #064e3b;
  --color-brand-800: #065f46;
  --color-brand-700: #0f766e;
  --color-brand-600: #0d9488;
  --color-brand-500: #14b8a6;
  --color-brand-400: #2dd4bf;
  --color-brand-300: #5eead4;
  --color-brand-200: #99f6e4;
  --color-brand-100: #ccfbf1;
  --color-brand-50:  #f0fdf4;

  --color-stone-950: #0c0a09;
  --color-stone-900: #1c1917;
  --color-stone-800: #292524;
  --color-stone-700: #44403c;
  --color-stone-600: #57534e;
  --color-stone-500: #78716c;
  --color-stone-400: #a8a29e;
  --color-stone-300: #d6d3d1;
  --color-stone-200: #e7e5e4;
  --color-stone-100: #f5f5f4;
  --color-stone-50:  #fafaf9;
  --color-white:     #ffffff;

  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;

  --shadow-sm:   0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl:   0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-2xl:  0 25px 50px -12px rgba(0,0,0,.25);

  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-2xl:  2rem;
  --radius-3xl:  2.5rem;
  --radius-full: 9999px;

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-stone-800);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-brand-950);
}

/* ── UTILITY CLASSES ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2rem; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand-600);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--color-brand-600);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-brand-900);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-brand-800); box-shadow: var(--shadow-xl); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent;
  color: var(--color-stone-700);
  border: 2px solid var(--color-stone-200);
}
.btn-secondary:hover { border-color: var(--color-brand-300); }

.btn-white {
  background: var(--color-white);
  color: var(--color-brand-950);
}
.btn-white:hover { box-shadow: var(--shadow-2xl); transform: translateY(-2px); }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Top Bar */
.header-topbar {
  background: var(--color-brand-950);
  color: var(--color-white);
  padding: 0.375rem 0;
  font-size: 0.75rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--color-white); }
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}
.topbar-social:hover { opacity: 0.85; }
.topbar-telegram  { background: #0088cc; color: white; }
.topbar-viber     { background: #7360f2; color: white; }
.topbar-whatsapp  { background: #25D366; color: white; }

@media (max-width: 640px) {
  .topbar-left .topbar-link:nth-child(2) { display: none; }
  .topbar-social span { display: none; }
}

/* Main Nav */
.main-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-stone-200);
  transition: box-shadow 0.3s ease;
}
.main-nav.scrolled { box-shadow: var(--shadow-lg); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-brand-900);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.125rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--color-brand-950);
  line-height: 1;
}
.logo-tagline {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone-400);
  line-height: 1;
  margin-top: 2px;
}

.nav-menu-wrap { flex: 1; display: flex; justify-content: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-stone-700);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  color: var(--color-brand-900);
  background: var(--color-brand-50);
}

.nav-cta { flex-shrink: 0; }

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-brand-950);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.mobile-menu-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-stone-100);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-menu.open {
  display: block;
  max-height: 100vh;
}
.mobile-menu-inner {
  padding: 1.5rem;
}
.mobile-nav-menu {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.mobile-nav-menu li { border-bottom: 1px solid var(--color-stone-100); }
.mobile-nav-menu li:last-child { border-bottom: none; }
.mobile-nav-menu li a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand-950);
}
.mobile-menu-contacts { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brand-900);
}
.mobile-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.mobile-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  font-weight: 900;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  transition: opacity var(--transition);
}
.mobile-social-btn:hover { opacity: 0.9; }
.whatsapp-btn  { background: #25D366; }
.telegram-btn  { background: #0088cc; }
.viber-btn     { background: #7360f2; }

@media (max-width: 1024px) {
  .nav-menu-wrap { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* Body offset for fixed header */
body { padding-top: calc(2.25rem + 3rem); }
@media (max-width: 640px) { body { padding-top: calc(2rem + 3rem); } }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .hero-section { padding: 6rem 0 5rem; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--color-brand-900);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--color-brand-950);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--color-brand-700); font-weight: 500; }
.hero-title .muted { color: var(--color-stone-400); }

.hero-description {
  font-size: 1.125rem;
  color: var(--color-stone-600);
  font-weight: 500;
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }

.hero-messenger-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-stone-400);
}

.hero-messengers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.875rem;
  border-radius: var(--radius-xl);
  font-weight: 900;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.messenger-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.messenger-btn:active { transform: scale(0.98); }
.messenger-btn.whatsapp { background: #25D366; }
.messenger-btn.telegram { background: #0088cc; }
.messenger-btn.viber    { background: #7360f2; }

.hero-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border: 2px solid var(--color-stone-200);
  border-radius: var(--radius-xl);
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--color-stone-700);
  transition: all var(--transition);
}
.hero-phone-btn:hover { border-color: var(--color-brand-300); }

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-stone-200);
}
@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 3rem;
    margin-top: 3rem;
  }
}
.stat-item { text-align: center; }
@media (min-width: 768px) { .stat-item { text-align: left; } }
.stat-value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--color-brand-900);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-stone-500);
  margin-top: 0.25rem;
  display: block;
}

/* Hero Image Column */
.hero-image-col {
  position: relative;
  display: none;
}
@media (min-width: 1024px) { .hero-image-col { display: block; } }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 3rem;
  overflow: hidden;
  border: 12px solid white;
  box-shadow: var(--shadow-2xl);
  z-index: 10;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-stone-100);
  z-index: 20;
}
.hero-float-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-float-card-sub {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-stone-400);
  margin-bottom: 0.25rem;
}
.hero-float-card-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1rem;
}
.hero-float-card-1 {
  top: 5rem;
  left: -3rem;
  background: white;
}
.hero-float-card-1 .hero-float-card-icon {
  background: var(--color-brand-100);
  color: var(--color-brand-600);
}
.hero-float-card-2 {
  bottom: 6rem;
  right: -3rem;
  background: var(--color-brand-800);
  color: white;
  border: none;
}
.hero-float-card-2 .hero-float-card-sub { color: var(--color-brand-300); }
.hero-float-card-2 .hero-float-card-icon {
  background: rgba(255,255,255,0.1);
  color: var(--color-brand-100);
}

/* ── BENEFITS SECTION ────────────────────────────────────────── */
.benefits-section {
  padding: 4rem 0;
  background: var(--color-stone-50);
}
@media (min-width: 768px) { .benefits-section { padding: 5rem 0; } }

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-stone-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-slow);
}
.benefit-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-brand-950);
}
.benefit-desc {
  font-size: 0.875rem;
  color: var(--color-stone-500);
  line-height: 1.6;
}

/* ── SERVICES SECTION ────────────────────────────────────────── */
.services-section {
  padding: 4rem 0;
  background: white;
}
@media (min-width: 768px) { .services-section { padding: 6rem 0; } }

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
}
.section-header-left { max-width: 36rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}
.section-subtitle {
  color: var(--color-stone-500);
  font-weight: 500;
  max-width: 24rem;
  margin-bottom: 1.5rem;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: var(--color-brand-900);
  transition: gap var(--transition);
}
.section-link:hover { gap: 0.75rem; }

.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 {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-stone-100);
  background: var(--color-stone-50);
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover {
  background: white;
  box-shadow: 0 25px 50px rgba(6,78,59,0.1);
  transform: translateY(-8px);
}
.service-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-brand-900);
  color: white;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-full);
}
.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  margin-bottom: 0.5rem;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-icon { transform: scale(1.1); }

.service-card-title {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-brand-950);
  transition: color var(--transition);
}
.service-card:hover .service-card-title { color: var(--color-brand-700); }

.service-card-desc {
  font-size: 0.875rem;
  color: var(--color-stone-600);
  line-height: 1.6;
  flex-grow: 1;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}
.service-price {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-stone-400);
  background: var(--color-stone-100);
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
}
.service-more {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition);
}
.service-card:hover .service-more { color: var(--color-brand-900); }
.service-card-link { position: absolute; inset: 0; z-index: 10; }

/* ── PROCESS SECTION ─────────────────────────────────────────── */
.process-section {
  padding: 4rem 0;
  background: var(--color-stone-50);
  border-top: 1px solid var(--color-stone-200);
  border-bottom: 1px solid var(--color-stone-200);
}
@media (min-width: 768px) { .process-section { padding: 6rem 0; } }

.process-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) { .process-header { margin-bottom: 5rem; } }

.process-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-600);
  margin-bottom: 1rem;
  display: block;
}
.process-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.process-subtitle { color: var(--color-stone-600); font-weight: 500; }

.process-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  position: relative;
  padding: 2rem 2.5rem;
  background: white;
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-3xl);
  transition: border-color var(--transition);
  overflow: hidden;
}
.process-step:hover { border-color: var(--color-brand-300); }
.process-step-number {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 4rem;
  color: var(--color-stone-100);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: color var(--transition);
}
.process-step:hover .process-step-number { color: var(--color-brand-50); }
.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-950);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.process-step-desc {
  font-size: 0.875rem;
  color: var(--color-stone-500);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── TRUST / WHY US SECTION ──────────────────────────────────── */
.trust-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-stone-900);
  color: var(--color-stone-100);
  overflow: hidden;
}
@media (min-width: 768px) { .trust-section { padding: 7rem 0; } }

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(6,78,59,0.2);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.trust-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-brand-400);
  font-weight: 900;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
.trust-label::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--color-brand-400);
}

.trust-headline-row {
  display: grid;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .trust-headline-row {
    grid-template-columns: 1fr auto;
    margin-bottom: 5rem;
  }
}
.trust-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 48rem;
}
.trust-title em { color: var(--color-brand-400); font-style: normal; }

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 1024px) {
  .trust-metrics { grid-template-columns: repeat(4, 1fr); margin-bottom: 4rem; }
}
.trust-metric {
  padding: 1.5rem 2rem;
  background: var(--color-stone-900);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-metric-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1;
}
.trust-metric-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-stone-300);
  margin-top: 0.25rem;
}
.trust-metric-sub { font-size: 0.75rem; color: var(--color-stone-500); }

.trust-pillars {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .trust-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-pillars { grid-template-columns: repeat(4, 1fr); } }

.trust-pillar {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.trust-pillar:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
}
.trust-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
}
.trust-pillar:hover .trust-pillar-icon { transform: scale(1.1); }
.trust-pillar-title { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.trust-pillar-desc { font-size: 0.875rem; line-height: 1.6; color: var(--color-stone-400); }

/* ── CASES SECTION ───────────────────────────────────────────── */
.cases-section {
  padding: 5rem 0;
  background: var(--color-stone-50);
}
@media (min-width: 768px) { .cases-section { padding: 7rem 0; } }

.cases-header {
  display: grid;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .cases-header { grid-template-columns: 1fr auto; } }

.cases-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--color-brand-50);
  border: 1px solid var(--color-brand-100);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-600);
  margin-bottom: 1.25rem;
}
.cases-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-brand-950);
  margin-bottom: 1rem;
}
.cases-title em { color: var(--color-stone-400); font-style: italic; font-weight: 500; }
.cases-subtitle { color: var(--color-stone-500); font-weight: 500; max-width: 36rem; }

.cases-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-stone-100);
  overflow: hidden;
  transition: all 0.3s ease;
}
.case-card:hover {
  border-color: var(--color-stone-200);
  box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}
.case-card-top { padding: 2rem 2rem 0; }
.case-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.case-type-badge {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}
.case-district {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-stone-400);
  margin-bottom: 1rem;
}
.case-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-brand-950);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.case-card:hover .case-title { color: var(--color-brand-800); }

.case-timeline {
  padding: 0 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.case-step {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.case-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-stone-300);
  background: white;
}
.case-step:last-child::before {
  background: #10b981;
  border-color: #10b981;
}
.case-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 1rem;
  bottom: -1.25rem;
  width: 1px;
  background: var(--color-stone-100);
}
.case-step-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone-400);
  margin-bottom: 0.25rem;
}
.case-step-text { font-size: 0.875rem; line-height: 1.6; color: var(--color-stone-500); }
.case-step:last-child .case-step-text { color: #065f46; font-weight: 600; }

.case-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--color-stone-100);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0 0 var(--radius-3xl) var(--radius-3xl);
}

/* ── REVIEWS SECTION ─────────────────────────────────────────── */
.reviews-section {
  padding: 4rem 0;
  background: white;
  overflow: hidden;
}
@media (min-width: 768px) { .reviews-section { padding: 5rem 0; } }

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.reviews-subtitle { color: var(--color-stone-500); font-weight: 500; }

/* Desktop marquee */
.reviews-marquee-wrap {
  position: relative;
  overflow: hidden;
}
.reviews-marquee-wrap::before,
.reviews-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}
.reviews-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.reviews-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.reviews-marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile slider */
.reviews-slider { display: none; }

@media (max-width: 767px) {
  .reviews-marquee-wrap { display: none; }
  .reviews-slider { display: block; }
}

.reviews-slider-inner {
  overflow: hidden;
}
.reviews-slides {
  display: flex;
  transition: transform 0.4s ease;
}
.reviews-slides > .review-card {
  min-width: 100%;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--color-brand-900);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--color-brand-400); background: var(--color-brand-50); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-stone-200);
  transition: all var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--color-brand-900);
  width: 1.5rem;
  border-radius: 4px;
}

/* Review Card */
.review-card {
  background: var(--color-stone-50);
  border: 1px solid var(--color-stone-200);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  width: 20rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.review-card:hover {
  background: white;
  border-color: var(--color-stone-300);
  box-shadow: var(--shadow-lg);
}
.review-stars { display: flex; gap: 0.25rem; color: #f59e0b; }
.review-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-stone-700);
  flex-grow: 1;
  font-style: italic;
}
.review-author { display: flex; flex-direction: column; gap: 0.125rem; }
.review-author-name { font-weight: 700; font-size: 0.9375rem; color: var(--color-brand-950); }
.review-author-meta { font-size: 0.75rem; color: var(--color-stone-400); }
.review-service-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--color-brand-50);
  color: var(--color-brand-700);
  border-radius: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* ── FAQ SECTION ─────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
  background: white;
}
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }

.faq-grid {
  display: grid;
  gap: 5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; } }

.faq-sidebar { }
@media (min-width: 1024px) { .faq-sidebar { position: sticky; top: 9rem; } }

.faq-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-600);
  margin-bottom: 1.25rem;
}
.faq-label::before { content: ''; display: block; width: 2rem; height: 1.5px; background: var(--color-brand-600); }
.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.faq-subtitle {
  color: var(--color-stone-500);
  font-weight: 500;
  line-height: 1.6;
  max-width: 20rem;
  margin-bottom: 2.5rem;
}
.faq-sidebar-actions { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-stone-100);
  background: white;
  transition: all var(--transition);
}
.faq-item.open {
  border-color: var(--color-brand-200);
  background: rgba(240,253,244,0.4);
  box-shadow: var(--shadow-sm);
}
.faq-item:not(.open):hover { border-color: var(--color-brand-100); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand-950);
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-item.open .faq-question-text { color: var(--color-brand-900); }

.faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-stone-100);
  color: var(--color-stone-400);
  margin-top: 0.125rem;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--color-brand-900);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 1.75rem 1.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(209,250,229,0.6);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-stone-600);
  line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  padding: 4rem 1rem;
  background: var(--color-brand-950);
}
@media (min-width: 768px) { .cta-banner { padding: 5rem 1rem; } }

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--color-brand-900), var(--color-brand-800));
  border-radius: var(--radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-banner-inner { padding: 5rem 4rem; } }

.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 Q50,100 100,0 V100 H0 Z' fill='white' opacity='.05'/%3E%3C/svg%3E") no-repeat center/cover;
  pointer-events: none;
}

.cta-banner-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-400);
  margin-bottom: 1.5rem;
  display: block;
}
.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-banner-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  font-weight: 500;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) { .cta-banner-actions { flex-direction: row; justify-content: center; } }

.cta-banner-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: opacity var(--transition);
}
.cta-banner-phone:hover { opacity: 0.85; }

.cta-messengers {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-messenger-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background var(--transition);
  text-decoration: none;
}
.cta-messenger-btn:hover { background: rgba(255,255,255,0.18); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--color-brand-950); color: rgba(255,255,255,0.7); }

.footer-main { padding: 4rem 0 3rem; }
@media (min-width: 768px) { .footer-main { padding: 5rem 0 4rem; } }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo .logo-mark { background: var(--color-brand-700); }
.footer-logo .logo-name { color: white; }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.4); }

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  max-width: 22rem;
}

.footer-socials { display: flex; gap: 0.625rem; }
.footer-social {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity var(--transition);
}
.footer-social:hover { opacity: 0.85; }

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-menu li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-menu li a:hover { color: white; }

.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact-link:hover { color: white; }
.footer-contact-link svg { flex-shrink: 0; margin-top: 2px; }
.footer-schedule { font-size: 0.875rem; color: rgba(255,255,255,0.5); padding-top: 0.25rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-copyright { font-size: 0.875rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── FLOATING CTA ────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.floating-cta-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-brand-900);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(6,78,59,0.35);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;
}
.floating-cta-btn:hover { background: var(--color-brand-800); transform: scale(1.05); }
.floating-cta-btn.open { background: var(--color-stone-700); }
.floating-cta-close { display: none; font-size: 1.25rem; font-weight: 900; }
.floating-cta-btn.open svg:first-child { display: none; }
.floating-cta-btn.open .floating-cta-close { display: flex; }

.floating-cta-popup {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-2xl);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 13rem;
  border: 1px solid var(--color-stone-100);
}
.floating-cta-popup.open { display: flex; }

.floating-cta-title {
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-stone-400);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-stone-100);
  margin-bottom: 0.25rem;
}
.floating-cta-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-stone-800);
  transition: background var(--transition);
}
.floating-cta-item:hover { background: var(--color-stone-50); }
.floating-cta-item.whatsapp-item { color: #25D366; }
.floating-cta-item.telegram-item { color: #0088cc; }
.floating-cta-item.viber-item    { color: #7360f2; }
.floating-cta-item.phone-item    { color: var(--color-brand-700); }
.floating-cta-item.form-item     { color: var(--color-brand-900); }

/* ── PAGE TEMPLATES ──────────────────────────────────────────── */

/* Generic Page */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1rem 4rem;
}
.page-hero {
  background: var(--color-stone-50);
  border-bottom: 1px solid var(--color-stone-200);
  padding: 6rem 0 3rem;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Services Page */
.services-page { background: white; min-height: 100vh; }
.services-page-hero {
  background: var(--color-stone-50);
  border-bottom: 1px solid var(--color-stone-200);
  padding: 7rem 0 3rem;
}
.services-page-hero h1 { font-size: clamp(2rem, 5vw, 3.75rem); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.services-page-hero h1 em { color: var(--color-brand-700); font-style: italic; font-weight: 500; }
.services-page-hero p { color: var(--color-stone-500); font-size: 1.125rem; font-weight: 500; max-width: 36rem; margin-bottom: 2rem; }

.services-hero-stats { display: flex; gap: 1.5rem; align-items: center; }
.services-hero-stat-divider { width: 1px; height: 3rem; background: var(--color-stone-200); }
.services-hero-stat-value { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 900; color: var(--color-brand-900); line-height: 1; }
.services-hero-stat-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; color: var(--color-stone-400); letter-spacing: 0.15em; }

.services-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .services-layout { flex-direction: row; gap: 3rem; }
}

.services-sidebar {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .services-sidebar { width: 18rem; }
}

.services-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .services-sidebar-inner { position: sticky; top: 8rem; } }

.services-sidebar-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-stone-400);
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}
.services-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-stone-500);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all var(--transition);
}
.services-cat-btn:hover { background: var(--color-stone-100); color: var(--color-brand-950); }
.services-cat-btn.active {
  background: var(--color-brand-900);
  color: white;
  box-shadow: 0 8px 20px rgba(6,78,59,0.2);
  transform: translateX(4px);
}

.services-sidebar-help {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--color-stone-100);
  border-radius: var(--radius-2xl);
}
.services-sidebar-help h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--color-brand-950);
}
.services-sidebar-help p {
  font-size: 0.75rem;
  color: var(--color-stone-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.services-content { flex: 1; display: flex; flex-direction: column; gap: 6rem; }

.services-category-section { scroll-margin-top: 8rem; }
.services-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.services-category-icon {
  width: 3rem;
  height: 3rem;
  background: var(--color-brand-50);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-700);
}
.services-category-title { font-size: 1.5rem; color: var(--color-brand-950); }

.services-mini-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .services-mini-grid { grid-template-columns: repeat(2, 1fr); } }

.service-mini-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--color-stone-100);
  border-radius: 1.5rem;
  transition: all var(--transition);
  text-decoration: none;
}
.service-mini-card:hover {
  border-color: var(--color-brand-200);
  box-shadow: 0 10px 25px rgba(6,78,59,0.05);
}
.service-mini-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: var(--color-stone-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-stone-400);
  flex-shrink: 0;
  transition: all 0.5s ease;
}
.service-mini-card:hover .service-mini-icon {
  background: var(--color-brand-900);
  color: white;
  transform: rotate(6deg);
}
.service-mini-title { font-size: 1rem; font-weight: 700; color: var(--color-brand-950); margin-bottom: 0.5rem; line-height: 1.3; }
.service-mini-card:hover .service-mini-title { color: var(--color-brand-800); }
.service-mini-desc { font-size: 0.8125rem; color: var(--color-stone-500); line-height: 1.5; }

/* Contacts Page */
.contacts-page { padding: 5rem 0 4rem; min-height: 100vh; }
.contacts-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.contacts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  background: var(--color-brand-50);
  color: var(--color-brand-700);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.contacts-title { font-size: clamp(2rem, 4vw, 3.75rem); margin-bottom: 1rem; }
.contacts-title em { color: var(--color-brand-700); font-style: italic; }
.contacts-subtitle { font-size: 1.125rem; color: var(--color-stone-600); font-weight: 500; }

.contacts-grid {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) { .contacts-grid { grid-template-columns: 3fr 2fr; } }

.contacts-form-card {
  background: white;
  border: 1px solid var(--color-stone-100);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .contacts-form-card { padding: 2.5rem; } }

.contacts-form-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contacts-form-subtitle { font-size: 0.875rem; color: var(--color-stone-500); margin-bottom: 2rem; }

/* Form Styles */
.landis-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.625rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-stone-500); }
.form-input,
.form-select,
.form-textarea {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-stone-200);
  background: var(--color-stone-50);
  color: var(--color-stone-900);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-stone-400); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-brand-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
  background: white;
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: none; }
.form-submit {
  padding: 1rem;
  background: var(--color-brand-900);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 900;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover { background: var(--color-brand-800); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-privacy { font-size: 0.75rem; color: var(--color-stone-400); text-align: center; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 4rem 0;
  text-align: center;
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 5rem;
  height: 5rem;
  background: var(--color-brand-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.form-success-title { font-size: 1.5rem; color: var(--color-brand-950); }
.form-success-text { font-size: 1rem; color: var(--color-stone-600); max-width: 22rem; }

.contacts-info { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-2xl);
  transition: all var(--transition);
  text-decoration: none;
}
.contact-info-card-phone {
  background: var(--color-brand-900);
  color: white;
}
.contact-info-card-phone:hover { background: var(--color-brand-800); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.contact-info-card-bg {
  background: var(--color-stone-50);
  border: 1px solid var(--color-stone-200);
  color: var(--color-stone-800);
}
.contact-info-card-bg:hover { border-color: var(--color-brand-300); }
.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card-phone .contact-info-icon { background: rgba(255,255,255,0.15); }
.contact-info-card-bg .contact-info-icon { background: var(--color-stone-100); color: var(--color-stone-600); }
.contact-info-label { font-size: 0.625rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.6; margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 900; font-size: 1.125rem; }
.contact-messenger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.contact-messenger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  color: white;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
  text-decoration: none;
}
.contact-messenger-btn:hover { opacity: 0.9; }
.contact-maps-embed { border-radius: var(--radius-xl); overflow: hidden; height: 12rem; border: 1px solid var(--color-stone-200); }
.contact-maps-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.contact-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-brand-50);
  border: 1px solid var(--color-brand-100);
  border-radius: var(--radius-xl);
  color: var(--color-stone-700);
}
.contact-guarantee-icon { color: var(--color-brand-700); flex-shrink: 0; margin-top: 2px; }
.contact-guarantee-title { font-weight: 900; font-size: 0.9375rem; color: var(--color-brand-900); margin-bottom: 0.25rem; }
.contact-guarantee-text { font-size: 0.875rem; line-height: 1.6; }

/* Cadastral Map Page */
.cadastral-page { }
.cadastral-hero {
  background: var(--color-brand-950);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.cadastral-hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(#fff 1px,transparent 1px), linear-gradient(90deg,#fff 1px,transparent 1px);
  background-size: 48px 48px;
}
.cadastral-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(6,78,59,0.6);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-brand-300);
  margin-bottom: 1.5rem;
}
.cadastral-hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cadastral-hero-title em { color: var(--color-brand-400); font-style: normal; }
.cadastral-hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 36rem; margin-bottom: 2.5rem; line-height: 1.7; }

.cadastral-number-section {
  padding: 4rem 0;
  background: white;
}
.cadastral-number-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .cadastral-number-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.cadastral-number-points { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.cadastral-number-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.cadastral-number-point-icon { color: var(--color-brand-600); flex-shrink: 0; margin-top: 2px; }
.cadastral-number-point-text { font-size: 0.9375rem; color: var(--color-stone-700); line-height: 1.5; }

.cadastral-format-card {
  background: var(--color-brand-950);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.cadastral-format-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-brand-400);
  margin-bottom: 1rem;
}
.cadastral-format-number {
  font-family: monospace;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.cadastral-format-number .sep { color: var(--color-brand-400); }
.cadastral-format-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cadastral-format-item {
  background: rgba(6,78,59,0.4);
  border-radius: 0.75rem;
  padding: 0.75rem;
}
.cadastral-format-code { font-size: 0.75rem; font-weight: 900; color: var(--color-brand-400); margin-bottom: 0.25rem; }
.cadastral-format-desc { font-size: 0.75rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

.cadastral-warning {
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #78350f;
  font-weight: 500;
  line-height: 1.5;
}

.cadastral-map-cta {
  background: var(--color-brand-50);
  border-top: 1px solid var(--color-brand-100);
  border-bottom: 1px solid var(--color-brand-100);
  padding: 3rem 0;
}
.cadastral-map-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--color-brand-100);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .cadastral-map-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cadastral-map-cta-info { display: flex; align-items: center; gap: 1.25rem; }
.cadastral-map-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-brand-950);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cadastral-features-section { padding: 4rem 0; background: white; }
.cadastral-features-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .cadastral-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cadastral-features-grid { grid-template-columns: repeat(4, 1fr); } }

.cadastral-feature-card {
  padding: 1.5rem;
  background: var(--color-stone-50);
  border: 1px solid var(--color-stone-100);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}
.cadastral-feature-card:hover { border-color: var(--color-brand-200); box-shadow: var(--shadow-md); }
.cadastral-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--color-brand-950);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-300);
  margin-bottom: 1rem;
}
.cadastral-feature-title { font-size: 1rem; font-weight: 900; color: var(--color-brand-950); margin-bottom: 0.5rem; }
.cadastral-feature-desc { font-size: 0.875rem; color: var(--color-stone-500); line-height: 1.6; }

/* About Page */
.about-hero {
  padding: 6rem 0 5rem;
  background: var(--color-brand-950);
  position: relative;
  overflow: hidden;
  color: white;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(6,78,59,0.2);
  filter: blur(120px);
  border-radius: 50%;
}
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(6,78,59,0.4);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-300);
  margin-bottom: 2.5rem;
}
.about-hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-brand-400);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.about-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.about-hero-title em { color: var(--color-brand-400); font-style: normal; font-weight: 500; }
.about-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 40rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; position: relative; z-index: 1; }

.about-stats-section {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding-bottom: 0;
  background: transparent;
}
.about-stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.about-stat-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-stone-100);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition);
}
.about-stat-card:hover { transform: translateY(-4px); }
.about-stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--color-brand-50);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-700);
  transition: all var(--transition);
}
.about-stat-card:hover .about-stat-icon { background: var(--color-brand-900); color: white; }
.about-stat-value { font-size: 2.5rem; font-family: var(--font-serif); font-weight: 900; color: var(--color-brand-950); line-height: 1; }
.about-stat-label { font-size: 0.875rem; font-weight: 700; color: var(--color-stone-700); }
.about-stat-sub { font-size: 0.6875rem; color: var(--color-stone-400); font-weight: 500; }

.about-mission-section {
  padding: 5rem 0;
  background: white;
}
.about-mission-grid {
  display: grid;
  gap: 5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) { .about-mission-grid { grid-template-columns: 1fr 1fr; } }

.about-values { display: flex; flex-direction: column; gap: 1.25rem; }
.about-value {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  transition: background var(--transition);
}
.about-value:hover { background: var(--color-stone-50); }
.about-value-icon {
  width: 3rem;
  height: 3rem;
  background: white;
  border: 1px solid var(--color-stone-100);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-900);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: all var(--transition);
}
.about-value:hover .about-value-icon { background: var(--color-brand-900); color: white; }
.about-value-title { font-size: 1rem; font-weight: 900; color: var(--color-brand-950); margin-bottom: 0.5rem; }
.about-value-desc { font-size: 0.875rem; color: var(--color-stone-400); line-height: 1.6; }

.about-guarantee-card {
  background: var(--color-brand-950);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}
.about-guarantee-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-brand-400);
  margin-bottom: 1rem;
}
.about-guarantee-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.3;
}
.about-guarantee-list { display: flex; flex-direction: column; gap: 0.75rem; }
.about-guarantee-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.5; }
.about-guarantee-item-icon { color: #34d399; flex-shrink: 0; margin-top: 2px; }

.about-areas-card {
  background: var(--color-stone-50);
  border: 1px solid var(--color-stone-100);
  border-radius: var(--radius-3xl);
  padding: 2rem;
}
.about-areas-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.about-areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.about-area-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 0.75rem; background: white; border: 1px solid var(--color-stone-100); border-radius: 0.75rem; font-size: 0.8125rem; font-weight: 700; color: var(--color-stone-700); }
.about-area-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--color-brand-400); flex-shrink: 0; }
.about-areas-note { font-size: 0.75rem; color: var(--color-stone-400); margin-top: 1rem; line-height: 1.5; }

/* Blog */
.blog-page { padding: 5rem 0; }
.blog-page-hero {
  background: var(--color-stone-50);
  border-bottom: 1px solid var(--color-stone-200);
  padding: 6rem 0 3rem;
  margin-bottom: 4rem;
}
.posts-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px)  { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: white;
  border: 1px solid var(--color-stone-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.post-card-image { aspect-ratio: 16/9; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.post-card-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--color-stone-400); font-weight: 600; margin-bottom: 0.75rem; }
.post-card-title { font-size: 1.125rem; font-family: var(--font-serif); font-weight: 700; color: var(--color-brand-950); margin-bottom: 0.75rem; line-height: 1.4; }
.post-card-excerpt { font-size: 0.875rem; color: var(--color-stone-500); line-height: 1.6; flex-grow: 1; }
.post-card-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 700; color: var(--color-brand-700); transition: gap var(--transition); }
.post-card-link:hover { gap: 0.875rem; }

/* Single Post */
.single-post { padding: 4rem 0; }
.single-post-hero { max-width: 48rem; margin: 0 auto; padding: 2rem 1rem 3rem; text-align: center; }
.single-post-content { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.single-post-content h2 { font-size: 1.875rem; margin: 2.5rem 0 1rem; }
.single-post-content h3 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.single-post-content p { color: var(--color-stone-700); line-height: 1.8; margin-bottom: 1.25rem; }
.single-post-content ul, .single-post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--color-stone-700); }
.single-post-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.single-post-content blockquote { border-left: 4px solid var(--color-brand-400); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--color-stone-600); }

/* Single Service CPT */
.single-service { padding: 5rem 0; }
.single-service-hero {
  background: var(--color-brand-950);
  padding: 6rem 0 4rem;
  color: white;
}
.single-service-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.single-service-hero p { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 40rem; }
.single-service-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.single-service-meta-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; color: white; }
.single-service-content { max-width: 800px; margin: 0 auto; padding: 3rem 1rem; }

/* 404 */
.not-found-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.not-found-number {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 900;
  color: var(--color-brand-100);
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found-title { font-size: 2rem; margin-bottom: 1rem; }
.not-found-desc { color: var(--color-stone-500); max-width: 24rem; margin: 0 auto 2rem; }

/* ── GUTENBERG CONTENT ───────────────────────────────────────── */
.entry-content { max-width: 100%; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { margin-bottom: 1rem; margin-top: 2rem; }
.entry-content p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--color-stone-700); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.entry-content img { border-radius: var(--radius-lg); }
.entry-content a { color: var(--color-brand-700); text-decoration: underline; }
.entry-content a:hover { color: var(--color-brand-900); }
.entry-content blockquote { border-left: 4px solid var(--color-brand-400); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-stone-600);
  border: 1px solid var(--color-stone-200);
  transition: all var(--transition);
}
.pagination .page-numbers:hover { border-color: var(--color-brand-400); color: var(--color-brand-700); }
.pagination .page-numbers.current { background: var(--color-brand-900); color: white; border-color: var(--color-brand-900); }

/* ── MISC HELPERS ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.hidden { display: none !important; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-brand-900);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-stone-100); }
::-webkit-scrollbar-thumb { background: var(--color-brand-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-brand-500); }

/* wp-admin bar offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
