:root {
  --bg-primary: #0a0507;
  --bg-secondary: #14090e;
  --bg-tertiary: #190c12;
  --bg-card: #1c0d14;
  --bg-card-hover: #26121c;
  --gold: #d4af37;
  --gold-light: #f3ca65;
  --gold-dark: #9e7b18;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --crimson: #991b1b;
  --crimson-light: #dc2626;
  --crimson-glow: rgba(220, 38, 38, 0.25);
  --steel-blue: #2563eb;
  --text-primary: #faf8f5;
  --text-secondary: #e2d9d0;
  --text-muted: #a89b91;
  --border-color: rgba(212, 175, 55, 0.2);
  --border-active: rgba(212, 175, 55, 0.5);
  --border-crimson: rgba(153, 27, 27, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-main: 0 20px 45px -15px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 10px 30px -8px rgba(212, 175, 55, 0.35);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.top-bar {
  background: linear-gradient(90deg, #070305, #14090e, #070305);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 202, 101, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(243, 202, 101, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(243, 202, 101, 0); }
}

.badge-advertorial {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-color);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-editorial {
  padding: 50px 20px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.editorial-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.editorial-headline span.gold {
  background: linear-gradient(135deg, #f3ca65 0%, #d4af37 50%, #9e7b18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editorial-subhead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 400;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
  font-size: 0.88rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14090e, #1c0d14);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.article-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.lead-paragraph {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.8;
  color: #f1f5f9;
  margin-bottom: 30px;
}

.lead-paragraph::first-letter {
  font-family: var(--font-display);
  font-size: 3.8rem;
  float: left;
  line-height: 0.85;
  padding-right: 14px;
  padding-top: 6px;
  color: var(--gold-light);
  font-weight: 700;
}

.content-block {
  margin-bottom: 35px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-primary);
  margin: 40px 0 20px;
  position: relative;
  padding-bottom: 12px;
}

.content-block h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin: 30px 0 14px;
}

.image-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 35px 0;
  box-shadow: var(--shadow-main);
  transition: var(--transition);
}

.image-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-card:hover img {
  transform: scale(1.02);
}

.image-caption {
  padding: 14px 20px;
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0d0609;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.image-caption i {
  color: var(--gold);
}

.quote-box {
  background: linear-gradient(135deg, rgba(20, 9, 14, 0.95), rgba(28, 13, 20, 0.95));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 26px 30px;
  margin: 40px 0;
  position: relative;
}

.quote-box p {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-box cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 40px 0;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

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

.feature-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-number i {
  font-size: 1.2rem;
  color: var(--gold-light);
  opacity: 0.8;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.specs-table-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: 40px 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.specs-table th {
  background: #0d0609;
  color: var(--gold-light);
  font-family: var(--font-display);
  padding: 16px 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: 0.05em;
}

.specs-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: rgba(212, 175, 55, 0.03);
}

.specs-table td strong {
  color: var(--text-primary);
}

.specs-table td .check-icon {
  color: var(--gold);
  margin-right: 8px;
}

.cta-reservation-block {
  background: linear-gradient(135deg, #12070c 0%, #1e0d16 50%, #14090e 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  margin: 55px 0;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
  position: relative;
}

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

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-accent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 14px;
  font-weight: 800;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 25px 0 35px;
  flex-wrap: wrap;
}

.old-price {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-accent);
}

.new-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.savings-tag {
  background: var(--gold);
  color: #0a0507;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-family: var(--font-accent);
}

.reservation-form {
  max-width: 620px;
  margin: 0 auto;
  background: #0d0609;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: #170c12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background: #1e0f18;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #170c12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.radio-option:hover, .radio-option.selected {
  border-color: var(--gold);
  background: #22111b;
}

.radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

.btn-order-primary {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #d4af37 0%, #f3ca65 50%, #9e7b18 100%);
  color: #0a0507;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
  margin-top: 25px;
}

.btn-order-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  filter: brightness(1.08);
}

.guarantee-pills {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-item i {
  color: var(--gold);
}

.testimonials-section {
  margin: 60px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 35px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.review-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.stars {
  color: var(--gold-light);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.legal-content-page {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.legal-content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: var(--text-primary);
  margin-bottom: 15px;
}

.legal-content-page .last-update {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-content-page h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: 32px 0 14px;
}

.legal-content-page p, .legal-content-page li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content-page ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

.site-footer {
  background: #050204;
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-company-details {
  background: #0d0609;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.footer-company-details h4 {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 24px;
  font-size: 0.84rem;
}

.advertorial-disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.copyright {
  text-align: center;
  margin-top: 25px;
  font-size: 0.8rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-editorial {
    padding: 30px 15px 20px;
  }
  .article-container {
    padding: 0 15px 40px;
  }
  .cta-reservation-block {
    padding: 26px 18px;
  }
  .reservation-form {
    padding: 20px 16px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}
