:root {
  --primary: #b8860b; 
  --primary-dark: #8b6508;
  --primary-on-dark: #f0d060; 
  --secondary: #1a1a1a;
  --accent: #005f73;
  --light: #f8f8f8;
  --dark: #0a0a0a;
  --white: #ffffff;
  --gray-light: #e9e9e9;
  --gray: #595959; 
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  color: #222222; 
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  background: #fefefe;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 15px;
}
p {
  margin-bottom: 15px;
}
a {
  text-decoration: none;
  color: #0046a0; 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
  background-color: rgba(26, 26, 26, 0.97);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: -10px;
  width: auto;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--white);
}
.logo-text span {
  color: var(--primary-on-dark); 
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
}
nav ul li a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}
nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-on-dark);
}
nav ul li a i {
  margin-right: 8px;
  font-size: 0.9rem;
  color: var(--primary-on-dark);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 999;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.article-hero {
  position: relative;
  padding-top: 70px;
  background: radial-gradient(circle at 30% 20%, #0c0b0f 0%, #050505 100%);
  overflow: hidden;
  isolation: isolate;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 40%,
    rgba(240, 208, 96, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 0;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75); 
  margin-bottom: 28px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary-on-dark);
}
.breadcrumb i {
  font-size: 0.6rem;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.95);
}
.article-category {
  display: inline-block;
  background: rgba(240, 208, 96, 0.15);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-on-dark);
  border: 1px solid rgba(240, 208, 96, 0.35);
  margin-bottom: 22px;
  font-family: system-ui, sans-serif;
}
.article-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.gold-gradient {
  background: linear-gradient(135deg, #f0d060 0%, #e6c84a 40%, #f8eaaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}
.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85); 
  margin-bottom: 36px;
}
.article-meta-row .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta-row .meta-item i {
  color: var(--primary-on-dark);
  font-size: 0.85rem;
}
.hero-cover {
  position: relative;
  margin: 0 -20px;
  height: 420px;
  overflow: hidden;
}
.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-cover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #fefefe 0%, transparent 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  align-items: start;
}

.article-body .intro-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #222222;
  font-weight: 400;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 36px;
}
.article-body h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--secondary);
  line-height: 1.3;
}
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--secondary);
}
.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #222222; 
  margin-bottom: 18px;
}
.article-body strong {
  color: var(--secondary);
  font-weight: 700;
}
.article-body a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184, 134, 11, 0.5);
  transition: text-decoration-color 0.2s;
}
.article-body a:hover {
  text-decoration-color: var(--primary);
}

.callout-box {
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.07) 0%,
    rgba(184, 134, 11, 0.03) 100%
  );
  border: 1px solid rgba(184, 134, 11, 0.35);
  border-radius: 16px;
  padding: 28px 30px;
  margin: 36px 0;
}
.callout-box .callout-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.callout-box .callout-title i {
  color: var(--primary);
}
.callout-box p {
  margin-bottom: 0;
  font-size: 0.97rem;
  color: #333333; 
}

.warning-box {
  background: rgba(180, 60, 40, 0.05);
  border: 1px solid rgba(180, 60, 40, 0.25);
  border-left: 4px solid #b43c28;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.warning-box .warning-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #8b2e1a; 
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.warning-box p {
  margin-bottom: 0;
  font-size: 0.93rem;
  color: #333333; 
}

.process-steps {
  margin: 36px 0;
}
.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: start;
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #c9a020);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white); 
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3);
}
.step-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.step-content p {
  margin-bottom: 0;
  font-size: 0.96rem;
  color: #333333;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.comparison-table thead tr {
  background: var(--secondary);
  color: var(--white);
}
.comparison-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--gray-light);
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--light);
}
.comparison-table tbody td {
  padding: 13px 18px;
  color: #222222;
  vertical-align: top;
}
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--secondary);
}
.icon-yes {
  color: #1a7a30; 
}
.icon-no {
  color: #8b2e1a; 
}

.table-scroll-wrapper {
  overflow-x: auto;
}

.checklist {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.97rem;
  color: #222222;
}
.checklist li:last-child {
  border-bottom: none;
}
.checklist li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-section {
  margin-top: 56px;
}
.faq-section h2 {
  margin-bottom: 28px;
}
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
  font: inherit;
}
.faq-question:hover {
  background: var(--light);
}
.faq-question i {
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  font-size: 0.97rem;
  color: #333333;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.author-box {
  background: var(--light);
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 56px;
  border: 1px solid var(--gray-light);
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c9a020);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white); 
  flex-shrink: 0;
}
.author-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--secondary);
}
.author-info p {
  font-size: 0.88rem;
  color: #595959; 
  margin-bottom: 0;
}
.author-info .author-role {
  font-size: 0.82rem;
  color: #222222;
  font-weight: 600;
  margin-bottom: 6px;
}
[itemprop="description"] {
  color: #333333 !important; 
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.post-nav a {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 20px 22px;
  transition: all 0.3s;
  display: block;
}
.post-nav a:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(184, 134, 11, 0.1);
}
.post-nav .nav-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav .nav-label i {
  color: var(--primary);
}
.post-nav .nav-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}
.post-nav .next-post {
  text-align: right;
}

.article-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.sidebar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--secondary);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.sidebar-card h3 i.heading-icon {
  color: var(--primary);
  margin-right: 8px;
}

.toc-list {
  list-style: none;
  padding: 0;
}
.toc-list li {
  margin-bottom: 10px;
}
.toc-list a {
  font-size: 0.9rem;
  color: #333333; 
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.2s;
  line-height: 1.4;
}
.toc-list a i {
  color: var(--primary);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.toc-list a:hover {
  color: var(--primary);
}

.cta-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 28px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(240, 208, 96, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.cta-card i.cta-icon {
  font-size: 2.2rem;
  color: var(--primary-on-dark);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cta-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9); 
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.btn-cta-gold {
  display: block;
  background: linear-gradient(105deg, var(--primary-on-dark) 0%, #f0d060 100%);
  color: #1a1a1a; 
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3);
  margin-bottom: 10px;
}
.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.4);
}
.btn-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a9e4c; 
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.btn-cta-whatsapp:hover {
  background: #157a3b;
  transform: translateY(-2px);
}

.related-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.2s;
}
.related-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.related-post:hover .related-title {
  color: var(--primary);
}
.related-thumb {
  width: 62px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-light);
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-title {
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.related-date {
  font-size: 0.78rem;
  color: var(--gray);
}
.related-date i.date-icon {
  color: var(--primary);
  margin-right: 4px;
}

.quick-facts {
  padding: 0;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.88rem;
}
.fact-item:last-child {
  border-bottom: none;
}
.fact-item i {
  color: var(--primary);
  width: 18px;
  text-align: center;
}
.fact-item strong {
  color: var(--secondary);
}
.fact-item span {
  color: #333333;
}
.fact-item a.fact-phone-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.share-btn.facebook {
  background: #1877f2;
  color: var(--white);
}
.share-btn.whatsapp {
  background: #1a9e4c;
  color: var(--white);
}
.share-btn.copy {
  background: var(--light);
  color: var(--secondary);
  border: 1px solid #aaaaaa; 
}
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 20px 80px;
  border-radius: 25px;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none' opacity='0.1'%3E%3Cpattern id='p' x='0' y='0' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='2' fill='white'/%3E%3C/pattern%3E%3Crect width='100' height='100' fill='url(%23p)'/%3E%3C/svg%3E");
}
.cta-band h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92); 
  max-width: 620px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}
.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary-on-dark);
  color: #1a1a1a; 
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  border: 2px solid var(--primary-on-dark);
  font-size: 1rem;
  cursor: pointer;
  gap: 10px;
}
.btn:hover {
  background: transparent;
  color: var(--primary-on-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}
.whatsapp-btn {
  background: #1a9e4c;
  border-color: #1a9e4c;
  color: white;
}
.whatsapp-btn:hover {
  background: transparent;
  color: #1a9e4c;
}

footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 25px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
  margin-bottom: 40px;
}
.footer-col h2 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background: var(--primary-on-dark);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.9); 
  transition: all 0.3s;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary-on-dark);
  padding-left: 5px;
}
.social-links {
  display: flex;
  margin-top: 18px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 8px;
  color: var(--white);
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--primary-on-dark);
  color: var(--secondary);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1a9e4c;
  color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

.footer-address {
  font-style: normal;
  color: inherit;
}
.directions-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-on-dark);
  font-weight: bold;
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .sidebar-order-1 {
    order: -1;
  }
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 84%;
    max-width: 360px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 26, 0.92),
      rgba(26, 26, 26, 0.98)
    );
    backdrop-filter: blur(16px) saturate(120%);
    transform: translateX(-105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
    padding: 90px 20px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }
  nav.active {
    transform: translateX(0);
  }
  nav ul {
    flex-direction: column;
    gap: 6px;
  }
  nav ul li {
    opacity: 0;
  }
  nav.active ul li {
    animation: menuItemIn 0.45s ease forwards;
  }
  nav.active ul li:nth-child(1) {
    animation-delay: 0.06s;
  }
  nav.active ul li:nth-child(2) {
    animation-delay: 0.12s;
  }
  nav.active ul li:nth-child(3) {
    animation-delay: 0.18s;
  }
  nav.active ul li:nth-child(4) {
    animation-delay: 0.24s;
  }
  nav.active ul li:nth-child(5) {
    animation-delay: 0.3s;
  }
  nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-cta {
    display: block;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
  }
  .btn-mobile-primary {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-on-dark), #f8e46a);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.25);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }
  .btn-mobile-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(184, 134, 11, 0.35);
  }
  .btn-mobile-primary i {
    margin-right: 8px;
  }
  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
  }
  .mobile-actions .action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
      transform 0.25s ease,
      background 0.25s ease;
  }
  .mobile-actions .action:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
  }
  .mobile-actions .action i {
    font-size: 1rem;
    color: var(--primary-on-dark);
  }
  .mobile-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition:
      transform 0.25s ease,
      background 0.25s ease;
  }
  .mobile-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
  }
  .hero-cover {
    height: 260px;
  }
  .post-nav {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 50px 24px;
    margin: 0 12px 60px;
  }
  .cta-band-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band-buttons .btn {
    justify-content: center;
  }
  .article-hero h1 {
    font-size: 1.9rem;
  }
  .author-box {
    flex-direction: column;
  }
  .comparison-table {
    font-size: 0.84rem;
  }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 12px;
  }
}
@media (min-width: 769px) {
  .mobile-cta {
    display: none !important;
  }
}