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

:root {
  --cream: #faf7f2;
  --warm-white: #fff9f2;
  --navy: #1a2744;
  --navy-light: #243259;
  --gold: #c8882a;
  --gold-light: #e8a84a;
  --sage: #6b8f71;
  --sage-light: #e8f0e9;
  --text: #2d2d2d;
  --text-muted: #6b6b6b;
  --border: #e8e0d4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo .shield {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50% 50% 45% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.nav-cta {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

.nav-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-only {
  display: none;
}

.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link.login {
  margin-right: 0.5rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 136, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(107, 143, 113, 0.08) 0%, transparent 50%),
    var(--cream);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sage-light);
  color: var(--sage);
  border: 1px solid rgba(107, 143, 113, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.alert-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border-left: 4px solid #c0392b;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.6s ease both;
  max-width: fit-content;
}
.alert-banner:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.alert-banner strong { color: #c0392b; font-weight: 700; }

.alert-banner .icon {
  font-size: 1.6rem;
}

.alert-banner .text {
  line-height: 1.4;
}

.alert-banner .sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-sub strong {
  font-weight: 900;
  color: var(--navy);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--navy);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.2);
}

.btn-secondary {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.btn-secondary:hover { gap: 0.7rem; }

/* HERO VISUAL */
.hero-visual {
  animation: fadeUp 0.6s 0.2s ease both;
}

.phone-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.12), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  position: relative;
}

.phone-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.phone-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.phone-card-header-text .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-card-header-text .number {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.call-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.status-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.status-badge {
  background: #fef3e2;
  color: var(--gold);
  border: 1px solid rgba(200, 136, 42, 0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.status-badge.safe {
  background: var(--sage-light);
  color: var(--sage);
  border-color: rgba(107, 143, 113, 0.3);
}

.status-badge.danger {
  background: #fde8e8;
  color: #c0392b;
  border-color: rgba(192, 57, 43, 0.3);
}

.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.5s ease infinite;
}

.transcript-area {
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  min-height: 80px;
}

.transcript-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.transcript-line.flagged {
  color: #c0392b;
  font-weight: 500;
  font-style: normal;
  display: block;
  animation: fadeUp 0.5s ease both;
}

.confidence-bar-wrap {
  margin-bottom: 0.5rem;
}

.confidence-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.confidence-bar-label #demo-score {
  color: #c0392b;
  font-weight: 500;
}

.confidence-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--sage), #c0392b);
}

.warning-banner {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: white;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* SOCIAL PROOF */
.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}

.avatars {
  display: flex;
}

.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  font-weight: 600;
  margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }
.avatar:nth-child(2) { background: var(--sage); }
.avatar:nth-child(3) { background: var(--gold); }

.social-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-text strong { color: var(--text); }

/* HOW IT WORKS */
.section {
  padding: 6rem 2rem;
}

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

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

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

.step {
  position: relative;
}

.step-num {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.step p strong {
  font-weight: 900;
  color: var(--navy);
}

/* FEATURES */
.features-section {
  background: var(--navy);
  padding: 6rem 2rem;
}

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

.features-section .section-label { color: var(--gold-light); }
.features-section h2 { 
  color: white; 
  margin-bottom: 0.5rem;
}
.features-section .section-sub { color: rgba(255,255,255,0.55); }

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

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.8rem;
  transition: background 0.2s, transform 0.2s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Lora', serif;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 300;
}

/* PRICING */
.pricing-section {
  padding: 6rem 2rem;
  background: var(--warm-white);
}

.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-section .section-label {
  text-align: center;
}

.pricing-section .section-sub {
  margin: 0 auto 0;
}

.price-card {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 24px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.1);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  /* content: 'MOST popular'; */
  position: absolute;
  top: 1.2rem; right: -2.5rem;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
}

.price-name {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.price-amount {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 400;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.price-includes {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

.price-includes li:last-child { border-bottom: none; }

.check {
  width: 20px; height: 20px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 0.7rem;
  margin-top: 1px;
}

.pricing-section .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 300;
}

/* TESTIMONIAL */
.testimonial-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.testimonial-section.compact {
  padding: 4rem 2rem;
  background: white;
  border-bottom: 1px solid var(--border);
}

.testimonial-section.compact .section-label {
  text-align: center;
  color: var(--sage);
  margin-bottom: 1rem;
}

.testimonial-section.compact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonial-section.compact .testimonials-grid {
  margin-top: 0;
}

.testimonial-section.compact .testimonial-card {
  background: var(--cream);
  border: none;
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* CTA FOOTER */
.cta-section {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 { color: white; margin-bottom: 1rem; }

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-section .btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

footer {
  background: #111827;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
}

footer a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes flashRed {
  0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); transform: scale(1); }
  50% { box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); transform: scale(1); }
}

.warning-banner.flash {
  animation: flashRed 1.5s infinite;
}

.warning-banner.safe {
  background: var(--sage);
  animation: none;
}

.hardware-deposit-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--sage-light);
  border: 1px solid rgba(107, 143, 113, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.hardware-deposit-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.hardware-deposit-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.hardware-deposit-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-card { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .loss-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .loss-source { text-align: left; }
}

/* ARTICLES PAGE SPECIFIC */

/* PAGE HEADER */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(107, 143, 113, 0.08) 0%, transparent 60%);
}

.page-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* STORIES */
.stories-section {
  padding: 2rem 2rem 6rem;
}

.stories-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.story-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 39, 68, 0.08);
}

.story-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-card h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.story-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.story-meta a {
  color: inherit;
}

.story-content {
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-content strong {
  font-weight: 500;
  color: var(--navy);
}

.story-content em {
  font-family: 'Lora', serif;
  font-style: italic;
}

.cta-box {
  background: var(--sage-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  color: var(--navy);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-box .icon {
  font-size: 1.5rem;
}

/* LOSSES SECTION */
.losses-section {
  background: var(--navy);
  color: white;
  padding: 6rem 2rem;
}
.losses-inner {
  max-width: 800px;
  margin: 0 auto;
}

.losses-section .section-label { color: var(--gold-light); }
.losses-section h2 { color: white; margin-bottom: 1rem; }
.losses-section p { color: rgba(255,255,255,0.6); max-width: 600px; }

.loss-list {
  list-style: none;
  margin-top: 3rem;
}
.loss-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
.loss-amount {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.loss-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-weight: 300;
}
.loss-source {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  nav {
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
  }
  
  .nav-logo {
    font-size: 1.15rem;
  }

  .nav-logo .shield {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .nav-link.login.mobile-only {
    font-size: 0.8rem;
    margin-right: 0.2rem;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.4rem;
    padding: 0.2rem;
  }

  .nav-right-group {
    gap: 0.6rem;
  }

  .nav-items {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    background: var(--cream);
    animation: slideIn 0.3s ease both;
  }

  .nav-items.active {
    display: flex;
  }

  /* Override previous hide rule */
  nav .nav-cta { 
    display: inline-flex; 
    width: 100%;
    justify-content: center;
  }
  
  .nav-link.login.mobile-only {
    font-size: 0.85rem;
    margin-right: 0;
  }
}

/* ARTICLES PAGE ENHANCEMENTS */
.articles-top-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  justify-content: center;
}

.articles-top-cta .btn-primary {
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  white-space: nowrap;
}

.articles-cta {
  padding: 7rem 2rem;
}

.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.cta-action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cta-big {
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
}

.cta-reassurance {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .articles-top-cta {
    flex-direction: column;
    border-radius: 16px;
    padding: 1rem;
    gap: 0.75rem;
    text-align: center;
  }
  .articles-top-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* $2/day value lines */
.hero-value-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1rem;
  animation: fadeUp 0.6s 0.35s ease both;
}

.cta-value-line {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}