/* Красноярск - Отчетные документы для командированных */
:root {
  --color-primary: #1a5f7a;
  --color-primary-dark: #0d3d4d;
  --color-accent: #ff6b35;
  --color-light: #f8f9fa;
  --color-dark: #2c3e50;
  --color-text: #333;
  --font-main: 'Segoe UI', system-ui, sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

@keyframes float {
  0%, 100% { transform: translateY(0); box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
  50% { transform: translateY(-10px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
}

.nav a {
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}
.nav a:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}

/* Hamburger button — скрыт на десктопе */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.hamburger:hover {
  background: rgba(255,255,255,0.2);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* Contact buttons - style as Perm site */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}
.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

.btn-tel {
  background: #25d366;
  color: white;
}
.btn-tel:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4d 100%);
  color: white;
  padding: 3rem 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
}

/* Main container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Advantages grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.advantage-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.advantage-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Почему с нами выгодно работать */
.advantages-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.advantages-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  color: var(--color-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Блок сравнения */
.comparison-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.comparison-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid;
}

.comparison-pros {
  background: linear-gradient(135deg, #f0f9f4 0%, #fff 100%);
  border-left-color: #22c55e;
}

.comparison-cons {
  background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
  border-left-color: #ef4444;
}

.comparison-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
}

.comparison-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.comparison-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.comparison-icon-check {
  background: #22c55e;
  color: white;
}

.comparison-icon-cross {
  background: #ef4444;
  color: white;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.comparison-list .list-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.comparison-list .list-icon svg {
  width: 14px;
  height: 14px;
}

.list-icon-check {
  background: #22c55e;
  color: white;
}

.list-icon-cross {
  background: #ef4444;
  color: white;
}

@media (max-width: 600px) {
  .comparison-block {
    grid-template-columns: 1fr;
  }
}

/* CTA блок — Квитанции гостиниц */
.cta-block {
  padding: 3rem 0;
}

.cta-block .section-title,
.cta-block .cta-title {
  color: white;
}

.cta-block .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-text {
  margin-bottom: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.cta-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.cta-feature-icon svg {
  width: 100%;
  height: 100%;
}

.cta-note {
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-cta-whatsapp {
  background: #25d366;
  color: white;
}
.btn-cta-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

/* Scheme / Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding-left: 3.5rem;
}
.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.5rem;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-item h4 {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

/* Delivery page: шаги 01, 02, 03 — номер над заголовком */
.delivery-page .step-item {
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
}
.delivery-page .step-item::before {
  content: '0' counter(step);
  border-radius: 8px;
  width: auto;
  min-width: 40px;
  height: 32px;
  padding: 0 8px;
  font-size: 0.85rem;
  left: 1.5rem;
  top: 1.25rem;
}
.delivery-page .delivery-step-title {
  font-size: 1.15rem;
  color: var(--color-dark);
  margin: 0 0 0.75rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: normal;
}
.delivery-steps {
  margin-bottom: 0.5rem;
}

/* Document examples gallery */
.doc-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin: 0 auto;
}

.doc-item {
  flex: 0 1 220px;
  max-width: 280px;
  width: 100%;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  animation: float 4.5s ease-in-out infinite;
}
.doc-item:hover {
  animation: none;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.doc-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.doc-item figcaption {
  padding: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-dark);
  font-weight: 500;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
th {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}
tr:hover {
  background: #f8f9fa;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: #f8f9fa;
}
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--color-primary);
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  padding: 0 1.25rem 1rem;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
}
.review-card blockquote {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review-card .author {
  font-size: 0.9rem;
  color: #666;
}

/* Modal for doc gallery */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  cursor: pointer;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  cursor: default;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.modal-overlay .close-hint {
  position: absolute;
  bottom: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: white;
  padding: 2rem 20px;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer a {
  color: rgba(255,255,255,0.9);
}
.footer a:hover {
  color: white;
}
.footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #0088cc;
  color: white !important;
  margin-left: 0.5rem;
  transition: 0.3s ease;
}
.footer-telegram:hover {
  background: #006699;
  color: white !important;
  transform: translateY(-1px);
}

.footer-inner--stacked {
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-query-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-mini-btn {
  display: inline-block;
  padding: 0.4rem 0.65rem;
  font-size: 0.68rem;
  line-height: 1.25;
  max-width: 100%;
  text-align: center;
  color: #fff !important;
  background: linear-gradient(165deg, #3d7a94 0%, #1a5f7a 45%, #0d3d4d 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 3px 0 #061f28,
    0 5px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: perspective(500px) rotateX(8deg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: footer-mini-float 3.5s ease-in-out infinite;
}
.footer-mini-btn:nth-child(odd) {
  animation-delay: -0.4s;
}
.footer-mini-btn:nth-child(3n) {
  animation-delay: -0.8s;
}
@keyframes footer-mini-float {
  0%, 100% { transform: perspective(500px) rotateX(8deg) translateY(0); }
  50% { transform: perspective(500px) rotateX(8deg) translateY(-3px); }
}
.footer-mini-btn:hover {
  animation: none;
  transform: perspective(500px) rotateX(2deg) translateY(-4px) scale(1.03);
  box-shadow:
    0 5px 0 #061f28,
    0 10px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.12);
  color: #fff !important;
}
.footer-mini-btn:active {
  transform: perspective(500px) rotateX(10deg) translateY(1px) scale(0.98);
  box-shadow: 0 1px 0 #061f28, 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Посадочные страницы по запросам (zapros/) */
.landing-zapros-first {
  padding: 2rem 0 3rem;
  background: linear-gradient(165deg, #0d3d4d 0%, #1a5f7a 50%, #1e6d8a 100%);
  color: #fff;
  min-height: min(85vh, 900px);
  display: flex;
  align-items: center;
}
.landing-zapros-first .container {
  width: 100%;
}
.landing-zapros-hero {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 0;
}
.landing-zapros-formula {
  font-size: clamp(1.15rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.landing-zapros-formula .zapros-query {
  color: #ffdcc4;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.landing-zapros-formula .zapros-cta {
  color: #ff6b35;
  text-shadow: 0 0 24px rgba(255, 107, 53, 0.45);
}
.landing-zapros-lead {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 640px;
}
.landing-zapros-buttons {
  justify-content: center;
}
.landing-zapros-first .btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.landing-zapros-first .btn-tg-light {
  color: #0088cc !important;
  border: 2px solid #0088cc;
  background: rgba(255, 255, 255, 0.95);
}
.landing-zapros-first .btn-tg-light:hover {
  background: #0088cc;
  color: #fff !important;
}
.landing-zapros-more {
  padding-top: 2rem;
}
.page-content .btn-tg-light {
  color: #0088cc !important;
  border: 2px solid #0088cc;
  background: rgba(0, 136, 204, 0.08);
}
.page-content .btn-tg-light:hover {
  background: #0088cc;
  color: #fff !important;
}

/* Page content */
.page-content {
  padding: 2rem 0;
}
.page-content h2 {
  color: var(--color-primary);
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}
.page-content p, .page-content li {
  margin-bottom: 0.75rem;
}
.page-content ul {
  margin-left: 1.5rem;
}

/* Consultation page */
.consultation-lead {
  font-size: 1.15rem;
  color: var(--color-dark);
  margin: 1rem 0 1.5rem;
  max-width: 700px;
}
.consultation-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
/* Telegram: на светлом фоне базовый .btn-outline не виден (белый текст) */
.consultation-cta .btn-outline,
.consultation-content .hero-buttons .btn-outline,
.section .hero-buttons .btn-outline {
  color: #0088cc;
  border: 2px solid #0088cc;
  background: rgba(0, 136, 204, 0.08);
}
.consultation-cta .btn-outline:hover,
.consultation-content .hero-buttons .btn-outline:hover,
.section .hero-buttons .btn-outline:hover {
  background: #0088cc;
  color: white;
  border-color: #0088cc;
}
.consultation-content h2:first-of-type {
  margin-top: 0;
}

/* Delivery table */
.delivery-table th:nth-child(2), .delivery-table td:nth-child(2),
.delivery-table th:nth-child(3), .delivery-table td:nth-child(3) {
  text-align: center;
}

/* Articles list */
.article-list {
  list-style: none;
}
.article-list li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-list a {
  color: var(--color-primary);
  font-weight: 600;
}
.article-list a:hover {
  text-decoration: underline;
}

/* Article page */
.article-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.article-content h2 {
  color: var(--color-primary);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
}
.article-content p {
  margin-bottom: 1rem;
}
.article-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.article-img {
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  line-height: 0;
  animation: float 4s ease-in-out infinite;
}
.article-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.article-cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2rem;
}
.article-cta-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.article-cta-buttons .btn {
  min-width: 140px;
}
.breadcrumb,
.article-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #666;
}
.breadcrumb a,
.article-breadcrumb a {
  color: var(--color-primary);
}
.breadcrumb a:hover,
.article-breadcrumb a:hover {
  text-decoration: underline;
}

/* Фото в рамке */
.fullscreen-photo {
  padding: 2rem 20px 3rem;
}

.fullscreen-photo .photo-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
  animation: float 5s ease-in-out infinite;
}

.fullscreen-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .fullscreen-photo {
    padding: 1rem 12px 2rem;
  }
  .fullscreen-photo .photo-frame {
    padding: 8px;
    border-radius: 8px;
  }
  .fullscreen-photo img {
    border-radius: 4px;
  }
}
.article-list p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}
.btn-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  background: var(--color-primary);
  color: white !important;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-read-more:hover {
  background: var(--color-primary-dark);
  text-decoration: none !important;
  transform: translateY(-1px);
}
.statyi-telegram-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.08), rgba(26, 95, 122, 0.04));
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.statyi-telegram-block .btn {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .hamburger {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, var(--color-primary-dark), var(--color-primary));
    padding: 4rem 1.5rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
  }

  .header.menu-open .nav-menu {
    transform: translateX(0);
  }

  .nav-menu .nav {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-menu .nav li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .nav-menu .nav a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
  }
  .header.menu-open .nav-overlay {
    display: block;
  }

  .contact-buttons {
    order: 3;
  }

  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}
