/* Global Styles & Variables */
:root {
  --primary-color: #59702a; /* Olive Young signature green */
  --primary-light: #f5f8f2; /* Soft mint/sage */
  --primary-dark: #3f521d;
  --secondary-color: #f77e5e; /* Warm coral accent */
  --secondary-light: #fef2ee;
  --bg-color: #fafaf9; /* Stone-50 */
  --card-bg: #ffffff;
  --text-color: #1c1917; /* Stone-900 */
  --text-muted: #78716c; /* Stone-500 */
  --border-color: #e7e5e4; /* Stone-200 */
  --success-color: #16a34a;
  --success-bg: #f0fdf4;
  --font-family-title: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-family-body: 'Inter', system-ui, -apple-system, sans-serif;
  --border-radius: 16px;
  --transition-speed: 0.25s;
  --max-width: 1140px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px; /* Space for mobile sticky footer */
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-family-title);
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.2;
}

h1 {
  font-size: 2.85rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.5rem;
}

/* Helper Classes */
.text-center { text-align: center; }
.highlight { color: var(--primary-color); }
.secondary-bg { background-color: #f5f5f4; } /* Stone-100 */

/* Announcement Bar */
.announcement-bar {
  background-color: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
}

.announcement-bar p { margin: 0; }
.badge-code {
  background-color: rgba(255, 255, 255, 0.18);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: bold;
}

/* Header & Navigation */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 18px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-family-title);
  color: var(--text-color);
}

.logo-icon { margin-right: 6px; font-size: 1.65rem; }
.logo-text span.highlight { color: var(--primary-color); }

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  transition: color var(--transition-speed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.last-updated {
  display: flex;
  align-items: center;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Hero Layout (Split Editorial - Vogue / Sephora style) */
.hero {
  background: linear-gradient(135deg, #f7faf5 0%, #edf3e8 100%);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-editorial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.verified-badge {
  background-color: var(--success-bg);
  color: var(--success-color);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.editorial-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-left-content h1 {
  font-size: 2.85rem;
  margin-bottom: 16px;
  color: var(--text-color);
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-trust-list {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.hero-trust-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hero Action Block */
.hero-action-container {
  display: flex;
  gap: 10px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  max-width: 380px;
}

.code-box-display {
  flex-grow: 1;
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-color);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color);
  border-radius: 8px;
  border: 1px dashed var(--border-color);
}

.btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-family-title);
  font-weight: 700;
  border-radius: 8px;
  transition: all var(--transition-speed);
}

.btn-copy {
  background-color: var(--primary-color);
  color: white;
  padding: 14px 24px;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px -2px rgba(89, 112, 42, 0.3);
}

.btn-copy:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-copy.copied {
  background-color: var(--success-color);
  box-shadow: 0 4px 12px -2px rgba(22, 163, 74, 0.3);
}

/* Hero Right: Product Collage (No stock models, actual products represented) */
.hero-right-collage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 340px;
}

.collage-item {
  position: absolute;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: transform var(--transition-speed);
}

.collage-item:hover {
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
}

.collage-item-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.collage-item-info {
  display: flex;
  flex-direction: column;
}

.collage-item-info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-color);
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Positions of product collage items */
.medicube-device-card {
  top: 10px;
  left: 10px;
  border-left: 3px solid #ff7e67;
  z-index: 5;
}

.joseon-cream-card {
  top: 70px;
  right: -10px;
  border-left: 3px solid #eab308;
  z-index: 4;
}

.round-lab-card {
  bottom: 20px;
  left: 20px;
  border-left: 3px solid #3b82f6;
  z-index: 6;
}

.mediheal-pad-card {
  bottom: 80px;
  right: 10px;
  border-left: 3px solid #10b981;
  z-index: 3;
}

.numbuzin-serum-card {
  top: 150px;
  left: 140px;
  border-left: 3px solid #f97316;
  z-index: 7;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

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

.tag {
  display: inline-block;
  background-color: var(--secondary-light);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Trending Products Grid (Homepage strong visual component) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.product-image-container {
  height: 180px;
  position: relative;
}

.dummy-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: #475569;
  text-align: center;
  padding: 20px;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.product-badge.best { background-color: var(--primary-color); }
.product-badge.viral { background-color: #8b5cf6; }
.product-badge.new { background-color: #06b6d4; }

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-info .brand {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-info .desc {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Savings calculation box */
.product-savings {
  background-color: var(--primary-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.old-price { text-decoration: line-through; color: var(--text-muted); }
.sale-price { font-weight: 600; }
.final-savings { font-weight: bold; margin-top: 4px; border-top: 1px solid var(--border-color); padding-top: 6px; }
.savings-price { color: var(--primary-color); font-size: 1.05rem; }
.savings-amount {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--success-color);
  text-align: right;
  margin-top: 4px;
}

.product-buttons {
  display: flex;
  gap: 8px;
}

.btn-copy-reminder {
  flex: 1;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.btn-copy-reminder:hover {
  background-color: var(--primary-dark);
}

.btn-copy-reminder.copied {
  background-color: var(--success-color);
}

.btn-review-link {
  display: inline-block;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-family-title);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  transition: border var(--transition-speed);
}

.btn-review-link:hover {
  border-color: var(--text-muted);
}

/* Long Form SEO Article */
.article-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.article-body p {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.article-body h3 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

/* Inline CTA Banner */
.inline-cta {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.inline-cta p {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.btn-inline-copy {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: var(--font-family-title);
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-speed);
}

.btn-inline-copy:hover {
  background-color: var(--primary-dark);
}

.btn-inline-copy.copied {
  background-color: var(--success-color);
}

/* Internal links grid - Prominently visible content blocks */
.internal-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.internal-link-card {
  display: block;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: var(--text-color);
  transition: transform var(--transition-speed), border var(--transition-speed);
}

.internal-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.internal-link-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.internal-link-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Coupon Comparison Table (DAMSBEAUTY, etc. de-emphasized near bottom) */
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.table-container {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px -3px rgba(0,0,0,0.03);
  margin-bottom: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--card-bg);
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: #f8fafc;
  font-weight: 700;
  color: var(--text-color);
}

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

.comparison-table .highlighted-row {
  background-color: #f7fee7;
}

.comparison-table .highlighted-row td {
  border-bottom: 2px solid #a3e635;
  color: #3f6212;
}

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

/* FAQ Accordions */
.faq-accordion-container {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition-speed);
}

.faq-item:hover {
  border-color: var(--text-muted);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-family-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--transition-speed);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Trust Banner & Editorial Policy (EEAT near footer) */
.trust-banner {
  background-color: #faf8f5;
  border-top: 1px solid var(--border-color);
  padding: 60px 0;
}

.editorial-policies-container {
  max-width: 750px;
  margin: 0 auto 32px auto;
}

.editorial-policies-container h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.editorial-policies-container p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-color);
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.02);
}

/* Exit Intent Overlay & Modal */
.exit-intent-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.exit-intent-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.exit-intent-modal {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  padding: 36px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease-out;
}

.exit-intent-modal-overlay.active .exit-intent-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}

.exit-intent-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.exit-intent-modal p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-code-box {
  font-family: monospace;
  font-size: 1.75rem;
  font-weight: 800;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  padding: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.btn-modal-copy {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: var(--font-family-title);
  font-weight: 700;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px -2px rgba(89, 112, 42, 0.35);
  transition: background var(--transition-speed);
}

.btn-modal-copy:hover {
  background-color: var(--primary-dark);
}

.btn-modal-copy.copied {
  background-color: var(--success-color);
}

.modal-terms {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Sticky Bottom Bar on Mobile Viewports */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1c1917;
  border-top: 1px solid #44403c;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 80;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-content {
  display: flex;
  flex-direction: column;
}

.sticky-discount {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.sticky-code {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}

.btn-sticky-copy {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: var(--font-family-title);
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  cursor: pointer;
}

.btn-sticky-copy.copied {
  background-color: var(--success-color);
}

/* Footer */
.footer {
  background-color: #1c1917;
  color: #d6d3d1;
  padding: 64px 0 32px 0;
  font-size: 0.88rem;
}

.footer h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
}

.footer-brand .logo-text span.highlight {
  color: var(--primary-light);
}

.footer-desc {
  color: #a8a29e;
  max-width: 320px;
  font-size: 0.82rem;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
  color: #a8a29e;
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-divider {
  border: none;
  border-top: 1px solid #44403c;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #78716c;
}

.footer-bottom p { margin: 0; }

.footer-bottom .disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Responsive Breakdowns */

@media (max-width: 1024px) {
  .hero-layout-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }
  
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.95rem; }
  
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left-content {
    text-align: center;
  }
  
  .hero-editorial-meta {
    justify-content: center;
  }
  
  .hero-trust-list {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 32px auto;
  }
  
  .hero-action-container {
    margin: 0 auto;
  }
  
  .internal-link-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) {
  .sticky-bottom-bar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide header menus on mobile viewports */
  }
  
  .inline-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  .internal-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 2rem; }
  
  .hero-trust-list {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-buttons {
    flex-direction: column;
  }
  
  .btn-review-link {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
