/* ============ HÜRRİYET КЛОН (близко к оригиналу) ============ */
:root {
  --hur-red: #e40046;
  --hur-red-dark: #b3003a;
  --hur-red-bg: #fff0f3;
  --hur-dark: #1a1a1a;
  --hur-dark-2: #2a2a2a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f4f4f4;
  padding-bottom: 80px;
  overflow-x: hidden;
}
a { color: var(--hur-red); text-decoration: none; }
.container { max-width: 980px; margin: 0 auto; padding: 0 16px; }

/* ============ ШАПКА HÜRRİYET (тёмная) ============ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Верхняя полоса - тёмная с логотипом */
.header-top {
  background: var(--hur-dark);
  border-bottom: 3px solid var(--hur-red);
}
.header-top-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
  line-height: 1;
  display: inline-block;
}
.logo-accent { color: var(--hur-red); }
.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ccc;
  font-size: 13px;
}
.header-top-right .login-btn {
  background: var(--hur-red);
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.header-top-right .search-icon {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Нижняя полоса - меню на белом */
.header-nav-strip {
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
}
.main-nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 0;
  font-size: 13px;
  font-weight: 700;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  color: #1a1a1a;
  padding: 14px 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.15s;
}
.main-nav a:hover {
  color: var(--hur-red);
  border-bottom-color: var(--hur-red);
}
.main-nav a.active {
  color: var(--hur-red);
  border-bottom-color: var(--hur-red);
}

/* Хлебные крошки */
.breadcrumb {
  background: #f4f4f4;
  border-bottom: 1px solid #e1e1e1;
  padding: 8px 0;
  font-size: 12px;
  color: #666;
}
.breadcrumb-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}
.breadcrumb a {
  color: var(--hur-red);
  font-weight: 600;
  text-transform: uppercase;
}
.breadcrumb-sep { color: #999; padding: 0 8px; }
.breadcrumb-current { color: #1a1a1a; }

@media (max-width: 768px) {
  .logo { font-size: 28px; }
  .header-top-right { gap: 10px; }
  .header-top-right span:not(.login-btn):not(.search-icon) { display: none; }
  .main-nav a { padding: 12px 10px; font-size: 12px; }
}

/* ============ ARTICLE ============ */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
.article {
  background: #fff;
  padding: 32px 32px 28px;
  margin-top: 16px;
}
.article-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .article { padding: 20px 16px; }
  .article-title { font-size: 24px; }
}
.article-subtitle {
  font-size: 19px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .article-subtitle { font-size: 16px; }
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}
.meta-source { font-weight: 700; color: var(--hur-red); text-transform: uppercase; }
.article p { margin-bottom: 18px; }
.section-h {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin: 32px 0 16px;
  padding-left: 14px;
  border-left: 5px solid var(--hur-red);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .section-h { font-size: 20px; }
}

/* ============ FIGURES ============ */
.article-figure { margin: 24px 0; }
.article-figure img,
.article-figure .placeholder {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.article-figure figcaption {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-top: 6px;
  padding: 0 4px;
}

/* ============ ПЛЕЙСХОЛДЕРЫ ============ */
.placeholder {
  background: repeating-linear-gradient(45deg, #ddd 0, #ddd 10px, #ccc 10px, #ccc 20px);
  border: 2px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #555;
  font-size: 14px;
  font-family: monospace;
  padding: 24px;
  min-height: 100px;
}
.placeholder-wide { aspect-ratio: 16/9; }
.placeholder-tall { aspect-ratio: 9/16; max-width: 400px; margin: 0 auto; }
.placeholder-square { aspect-ratio: 1/1; max-width: 500px; margin: 0 auto; }
.placeholder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 9px;
  padding: 4px;
  min-height: auto;
}

/* ============ ЦИТАТЫ ============ */
blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  font-size: 18px;
  line-height: 1.55;
  border-left: 4px solid var(--hur-red);
  background: #fafafa;
  font-style: italic;
}
@media (max-width: 768px) {
  blockquote { font-size: 16px; padding: 12px 16px; }
}
.quote-witness { border-color: #999; color: #444; }
.quote-acun { border-color: var(--hur-red); background: var(--hur-red-bg); font-weight: 500; }
.quote-user { border-color: #2c8a3e; background: #f0faf2; }
.threats-list {
  list-style: none;
  margin: 16px 0 24px;
  padding-left: 0;
}
.threats-list li {
  padding: 10px 14px;
  margin-bottom: 8px;
  background: var(--hur-red-bg);
  border-left: 3px solid var(--hur-red);
  font-style: italic;
  color: #444;
}

/* ============ CTA БЛОКИ ============ */
.cta-block {
  margin: 36px 0;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--hur-red-bg), #ffd6e0);
  border-radius: 8px;
  border: 1px solid #ffc1d0;
}
.cta-button {
  display: inline-block;
  background: var(--hur-red);
  color: #fff !important;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(228,0,70,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(228,0,70,0.45);
}
.cta-primary { background: var(--hur-red); }
.cta-final {
  background: var(--hur-red-dark);
  font-size: 22px;
  padding: 20px 50px;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .cta-final { font-size: 18px; padding: 16px 28px; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(179,0,58,0.3); }
  50% { box-shadow: 0 4px 28px rgba(179,0,58,0.7); }
}
.cta-subline {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
}

/* ============ ТАБЛИЦА ТЕСТА ============ */
.test-results {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}
.test-results td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}
.test-results td:first-child {
  font-weight: 700;
  color: var(--hur-red);
  width: 35%;
}
.test-results td small { color: #888; font-size: 13px; }
@media (max-width: 768px) {
  .test-results { font-size: 14px; }
  .test-results td { padding: 8px 6px; }
}

/* ============ ФОРМА КРАСНАЯ ============ */
.form-section {
  margin: 40px 0;
  padding: 32px 28px;
  background: #fff;
  border: 3px solid var(--hur-red);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(228,0,70,0.12);
}
@media (max-width: 768px) {
  .form-section { padding: 24px 18px; }
}
.form-header h2 {
  font-size: 26px;
  color: var(--hur-red);
  margin-bottom: 10px;
}
.form-header p {
  color: #555;
  margin-bottom: 24px;
}
.application-form .form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
  font-size: 15px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  border: 2px solid #d0d0d0;
  border-radius: 6px;
  font-family: inherit;
  transition: border 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus {
  outline: none;
  border-color: var(--hur-red);
}
.form-submit {
  width: 100%;
  background: var(--hur-red);
  color: #fff;
  border: none;
  padding: 18px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(228,0,70,0.35);
  transition: transform 0.15s, background 0.15s;
}
.form-submit:hover {
  transform: translateY(-2px);
  background: var(--hur-red-dark);
}
.form-submit:disabled {
  background: #999;
  cursor: wait;
  transform: none;
}
.form-trust {
  display: flex;
  justify-content: space-around;
  margin-top: 16px;
  font-size: 12px;
  color: #555;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============ КОММЕНТАРИИ ============ */
.comments-section { margin: 40px 0; }
.comments-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hur-red);
}
.comment {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.comment-avatar { flex: 0 0 56px; }
.comment-body { flex: 1; min-width: 0; }
.comment-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}
.comment-meta strong { color: var(--hur-red); }
.comment-body p { margin-bottom: 0; font-size: 15px; line-height: 1.5; word-wrap: break-word; }
.show-hidden-btn {
  display: block;
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #ddd;
  padding: 14px;
  font-size: 15px;
  color: #666;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  border-radius: 6px;
  font-family: inherit;
  transition: background 0.15s;
}
.show-hidden-btn:hover { background: #ebebeb; }

/* ============ ФИНАЛЬНЫЙ CTA ============ */
.final-cta {
  margin: 40px 0;
  padding: 32px 24px;
  text-align: center;
  background: var(--hur-red-bg);
  border-radius: 8px;
}
.final-text { font-size: 17px; color: #444; margin-bottom: 20px; line-height: 1.6; }
.timer-line {
  margin-top: 14px;
  color: var(--hur-red);
  font-weight: 700;
  font-size: 16px;
}

/* ============ FLOATING - ПОЯВЛЯЮТСЯ ПОСЛЕ СКРОЛЛА ============ */
/* Изначально скрыты, появляются когда пользователь проскроллил мимо заголовка */
.floating-stack {
  position: fixed;
  top: 110px; /* НИЖЕ шапки */
  right: 16px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 260px;
  max-width: calc(100vw - 32px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  pointer-events: none;
}
.floating-stack.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.floating-counter {
  background: rgba(26,26,26,0.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
}
.floating-counter .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 1.5s infinite;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.floating-notification {
  background: #fff;
  color: #1a1a1a;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  font-size: 12.5px;
  line-height: 1.4;
  border-left: 3px solid var(--hur-red);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.floating-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Floating CTA внизу справа - всегда видна */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 16px;
  background: var(--hur-red);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(228,0,70,0.45);
  z-index: 60;
  animation: bounce 3s infinite;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .floating-stack {
    top: auto;
    bottom: 80px;
    right: 8px;
    width: 230px;
  }
  .floating-cta {
    bottom: 12px;
    right: 12px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============ ПОДВАЛ ============ */
.site-footer {
  background: var(--hur-dark);
  color: #ccc;
  margin-top: 40px;
  padding: 32px 0;
  text-align: center;
  border-top: 3px solid var(--hur-red);
}
.footer-logo {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  font-style: italic;
}
.footer-logo .logo-accent { color: var(--hur-red); }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a { color: #ccc; font-size: 14px; }
.copyright { font-size: 12px; color: #888; }
