/* style.css — Cinematic Portal Styles */

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 20px var(--gold-glow)) drop-shadow(0 -10px 40px var(--gold-glow)); }
  50% { filter: drop-shadow(0 0 40px var(--gold-glow-strong)) drop-shadow(0 -10px 60px var(--gold-glow-strong)); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 11, 22, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 11, 22, 0.95);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text);
}

.nav-logo {
  width: 40px;
  height: 40px;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 11, 22, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  transition: color 0.3s ease;
}

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

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 164, 74, 0.08) 0%, rgba(196, 164, 74, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vh;
  height: 70vh;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
}

.hero-shield {
  width: 100px;
  height: 120px;
  animation: pulseGlow 3s ease-in-out infinite, float 6s ease-in-out infinite;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-descriptor {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-weight: 400;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(196, 164, 74, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--color-border-strong);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 164, 74, 0.05);
}

/* ========== SECTION SHARED ========== */
.section {
  position: relative;
  padding: 160px 2rem;
  overflow: hidden;
}

.section-bg-alt {
  background: var(--color-bg-alt);
}

.section-container {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FEATURED NEWS ========== */
.featured {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.featured-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-enam {
  background: rgba(196, 164, 74, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(196, 164, 74, 0.3);
}

.badge-mp {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-defensoria {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-geral {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-juridico {
  background: rgba(139, 26, 26, 0.15);
  color: #e05555;
  border: 1px solid rgba(224, 85, 85, 0.25);
}

.featured-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.featured-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.featured-excerpt {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.featured-sales {
  position: relative;
  padding: 2.5rem;
  background: rgba(196, 164, 74, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.featured-sales::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.featured-sales-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}

.featured-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.source-link {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.source-link:hover {
  color: var(--gold);
}

/* ========== NEWS GRID ========== */
.filter-pills {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-pill {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-pill.active {
  background: var(--gold);
  color: var(--color-bg);
  border-color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(196, 164, 74, 0.05);
}

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

.news-card[data-hidden="true"] {
  display: none;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-sales {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border);
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-card:hover {
  background: var(--green-hover);
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-1px);
}

/* ========== TIMELINE ========== */
.timeline-section {
  background: var(--color-bg);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--color-border-strong), var(--color-border-strong), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  text-align: right;
  padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: left;
  padding-left: calc(50% + 2rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--color-bg);
  z-index: 1;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.timeline-dot.dot-gold { background: var(--dot-gold); box-shadow: 0 0 12px rgba(196,164,74,0.4); }
.timeline-dot.dot-blue { background: var(--dot-blue); box-shadow: 0 0 12px rgba(59,130,246,0.4); }
.timeline-dot.dot-green { background: var(--dot-green); box-shadow: 0 0 12px rgba(34,197,94,0.4); }

.timeline-content {
  flex: 1;
}

.timeline-date {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.timeline-event-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.timeline-event-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ========== TELEGRAM CTA ========== */
.telegram-section {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  text-align: center;
}

.telegram-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem;
  background: rgba(196, 164, 74, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.telegram-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 164, 74, 0.06), transparent 70%);
  pointer-events: none;
}

.telegram-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.telegram-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.telegram-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #0088cc;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-telegram:hover {
  background: #006da3;
  box-shadow: 0 0 30px rgba(0, 136, 204, 0.3);
  transform: translateY(-2px);
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
  background: var(--color-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  position: relative;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.product-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(196, 164, 74, 0.06), rgba(196, 164, 74, 0.02));
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem;
}

.product-card.highlight::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-tag {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-highlight-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
}

.product-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
}

.product-price .price-period {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

.btn-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-product:hover {
  background: var(--green-hover);
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 2rem 40px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 48px;
  height: 56px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
}

.footer-brand-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-attribution a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .product-card.highlight {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 100px 1.25rem;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 1.25rem 60px;
    min-height: 100svh;
  }

  .hero-shield {
    width: 72px;
    height: 86px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-subtitle {
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn-primary, .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .hero-watermark {
    width: 50vh;
    height: 60vh;
    opacity: 0.02;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card.highlight {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  /* Timeline mobile */
  .timeline::before {
    left: 1rem;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
    padding-right: 0;
    padding-left: 3rem;
  }

  .timeline-dot {
    left: 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .featured-title {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  .filter-pills {
    gap: 0.5rem;
  }
  
  .filter-pill {
    font-size: 0.7rem;
    padding: 0.4rem 0.875rem;
  }

  .news-card {
    padding: 1.5rem;
  }

  .telegram-card {
    padding: 2rem;
  }
}


/* ========== NEWS CARD AS LINK ========== */
a.news-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card-read-more {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 1rem;
  transition: color 0.3s ease;
}

a.news-card:hover .card-read-more {
  color: var(--gold-light);
}
