/*
Theme Name: MidasTrends
Theme URI: https://midastrends.com
Author: MidasTrends Team
Description: India's #1 Money, Health & Tech Advisor Platform
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: midastrends
*/

/* =====================
   CSS VARIABLES
===================== */
:root {
  --mt-green: #16a34a;
  --mt-green-dark: #052e16;
  --mt-green-mid: #166534;
  --mt-green-light: #f0fdf4;
  --mt-green-bright: #4ade80;
  --mt-gold: #fbbf24;
  --mt-text: #111827;
  --mt-text-muted: #6b7280;
  --mt-text-light: #9ca3af;
  --mt-border: #e5e7eb;
  --mt-bg: #f9fafb;
  --mt-white: #ffffff;
  --mt-radius: 10px;
  --mt-radius-sm: 6px;
  --mt-radius-full: 100px;
  --mt-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --mt-shadow-hover: 0 8px 25px rgba(0,0,0,0.1);
  --mt-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mt-font-heading: 'Playfair Display', Georgia, serif;
}

/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--mt-font);
  font-size: 16px;
  color: var(--mt-text);
  background: var(--mt-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4, h5 {
  font-family: var(--mt-font-heading);
  line-height: 1.2;
  color: var(--mt-text);
}

/* =====================
   NAVBAR
===================== */
.mt-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mt-white);
  border-bottom: 1px solid var(--mt-border);
  height: 64px;
  transition: box-shadow 0.3s;
}
.mt-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.mt-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.mt-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mt-text);
  flex-shrink: 0;
}
.mt-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--mt-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-logo-icon svg { width: 18px; height: 18px; fill: white; }
.mt-logo-accent { color: var(--mt-green); }

/* Nav Links */
.mt-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.mt-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.mt-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--mt-text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.mt-nav-link:hover,
.mt-nav-link.active {
  color: var(--mt-green);
  border-bottom-color: var(--mt-green);
}
.mt-nav-link svg { width: 10px; height: 10px; }

/* Dropdown */
.mt-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--mt-white);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  box-shadow: var(--mt-shadow-hover);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 100;
}
.mt-nav-item:hover .mt-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mt-dropdown-section { padding: 8px 0; border-bottom: 1px solid var(--mt-border); }
.mt-dropdown-section:last-child { border-bottom: none; }
.mt-dropdown-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--mt-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
}
.mt-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--mt-text-muted);
  transition: all 0.1s;
}
.mt-dropdown a:hover {
  background: var(--mt-green-light);
  color: var(--mt-green);
}

/* Nav Right */
.mt-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mt-search-box {
  position: relative;
}
.mt-search-box input {
  width: 200px;
  height: 36px;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-full);
  padding: 0 14px 0 36px;
  font-size: 13px;
  color: var(--mt-text);
  background: var(--mt-bg);
  transition: all 0.2s;
}
.mt-search-box input:focus {
  outline: none;
  border-color: var(--mt-green);
  width: 240px;
  background: white;
}
.mt-search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--mt-text-light);
}
.mt-btn-primary {
  background: var(--mt-green);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: var(--mt-radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}
.mt-btn-primary:hover { background: #15803d; transform: translateY(-1px); }

/* Mobile Hamburger */
.mt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.mt-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mt-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =====================
   HERO SECTION
===================== */
.mt-hero {
  background: var(--mt-green-dark);
  background-image: radial-gradient(ellipse at 70% 50%, #0f4d2a 0%, #052e16 60%);
  padding: 72px 0 60px;
}
.mt-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,0.15);
  color: var(--mt-green-bright);
  border: 1px solid rgba(74,222,128,0.25);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--mt-radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.mt-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--mt-green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.mt-hero h1 {
  font-family: var(--mt-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}
.mt-hero h1 .green { color: var(--mt-green-bright); }
.mt-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.mt-hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.mt-hero-btn-green {
  background: var(--mt-green);
  color: white;
  border: none;
  padding: 13px 24px;
  border-radius: var(--mt-radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}
.mt-hero-btn-green:hover { background: #15803d; transform: translateY(-2px); }
.mt-hero-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 13px 24px;
  border-radius: var(--mt-radius);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.mt-hero-btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.mt-trust-badges {
  display: flex;
  gap: 20px;
}
.mt-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.mt-trust-check {
  width: 16px;
  height: 16px;
  background: rgba(22,163,74,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--mt-green-bright);
}

/* Hero Cards */
.mt-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mt-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mt-radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
  animation: floatUp 3s ease-in-out infinite;
}
.mt-hero-card:nth-child(2) { animation-delay: 0.75s; }
.mt-hero-card:nth-child(3) { animation-delay: 1.5s; }
.mt-hero-card:nth-child(4) { animation-delay: 2.25s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mt-hero-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.mt-hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mt-hero-card-body { flex: 1; }
.mt-hero-card-title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 2px; }
.mt-hero-card-sub { font-size: 12px; color: rgba(255,255,255,0.45); }
.mt-hero-card-arrow { font-size: 14px; color: var(--mt-green-bright); }

/* =====================
   STATS BAR
===================== */
.mt-stats-bar {
  background: #0a1a0f;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mt-stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
  padding-bottom: 0;
}
.mt-stat-item {
  text-align: center;
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mt-stat-item:last-child { border-right: none; }
.mt-stat-number {
  font-size: 26px;
  font-weight: 700;
  color: white;
  font-family: var(--mt-font-heading);
}
.mt-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

/* =====================
   SECTIONS BASE
===================== */
.mt-section {
  padding: 60px 0;
  background: var(--mt-white);
}
.mt-section-alt { background: var(--mt-bg); }
.mt-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mt-section-title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--mt-font-heading);
  color: var(--mt-text);
}
.mt-section-link {
  font-size: 13px;
  color: var(--mt-green);
  font-weight: 600;
  cursor: pointer;
}
.mt-section-link:hover { text-decoration: underline; }

/* =====================
   TOOLS GRID
===================== */
.mt-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mt-tool-card {
  background: var(--mt-white);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.mt-tool-card:hover {
  border-color: var(--mt-green);
  transform: translateY(-3px);
  box-shadow: var(--mt-shadow-hover);
}
.mt-tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mt-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.mt-tool-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--mt-text);
  margin-bottom: 6px;
}
.mt-tool-desc {
  font-size: 12px;
  color: var(--mt-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.mt-tool-badge {
  display: inline-block;
  background: var(--mt-green-light);
  color: var(--mt-green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--mt-radius-full);
  margin-bottom: 14px;
}
.mt-tool-cta {
  font-size: 13px;
  color: var(--mt-green);
  font-weight: 600;
}

/* =====================
   FEATURED ARTICLE
===================== */
.mt-featured {
  background: var(--mt-green-dark);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mt-featured-badge {
  display: inline-block;
  background: rgba(74,222,128,0.15);
  color: var(--mt-green-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--mt-radius-full);
  margin-bottom: 12px;
}
.mt-featured h2 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  max-width: 420px;
  margin-bottom: 14px;
}
.mt-featured-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.mt-featured-stat { font-size: 12px; color: rgba(255,255,255,0.4); }
.mt-featured-btn {
  background: white;
  color: var(--mt-green-dark);
  border: none;
  padding: 11px 22px;
  border-radius: var(--mt-radius);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.mt-featured-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.mt-featured-emoji { font-size: 80px; line-height: 1; }

/* =====================
   ARTICLES GRID
===================== */
.mt-articles-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.mt-filter-pill {
  padding: 6px 16px;
  border-radius: var(--mt-radius-full);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--mt-border);
  background: white;
  color: var(--mt-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.mt-filter-pill:hover,
.mt-filter-pill.active {
  background: var(--mt-green);
  border-color: var(--mt-green);
  color: white;
}
.mt-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mt-article-card {
  background: var(--mt-white);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.mt-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mt-shadow-hover);
  border-color: #d1d5db;
}
.mt-article-thumb {
  height: 7px;
  width: 100%;
}
.mt-article-body { padding: 18px; }
.mt-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--mt-radius-full);
  margin-bottom: 10px;
}
.cat-finance { background: #fef3c7; color: #92400e; }
.cat-health  { background: #fee2e2; color: #991b1b; }
.cat-tech    { background: #ede9fe; color: #4c1d95; }
.cat-travel  { background: #dbeafe; color: #1e3a8a; }
.cat-tools   { background: #dcfce7; color: #14532d; }
.bar-finance { background: #f59e0b; }
.bar-health  { background: #ef4444; }
.bar-tech    { background: #8b5cf6; }
.bar-travel  { background: #3b82f6; }
.bar-tools   { background: #22c55e; }

.mt-article-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--mt-text);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mt-article-excerpt {
  font-size: 13px;
  color: var(--mt-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mt-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--mt-border);
}
.mt-article-meta { font-size: 12px; color: var(--mt-text-light); }
.mt-article-read { font-size: 12px; color: var(--mt-green); font-weight: 600; }

/* =====================
   SUBDOMAINS SECTION
===================== */
.mt-subdomains {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.mt-sub-card {
  background: var(--mt-white);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.mt-sub-card:hover {
  border-color: var(--mt-green);
  background: var(--mt-green-light);
  transform: translateY(-3px);
}
.mt-sub-emoji { font-size: 32px; display: block; margin-bottom: 12px; }
.mt-sub-name { font-size: 14px; font-weight: 700; color: var(--mt-text); margin-bottom: 6px; }
.mt-sub-desc {
  font-size: 12px;
  color: var(--mt-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.mt-sub-link { font-size: 12px; color: var(--mt-green); font-weight: 600; }

/* =====================
   NEWSLETTER
===================== */
.mt-newsletter {
  background: var(--mt-green-dark);
  padding: 64px 0;
  text-align: center;
}
.mt-newsletter h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.mt-newsletter-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.mt-nl-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}
.mt-nl-form input {
  flex: 1;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--mt-radius);
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 0 16px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.mt-nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.mt-nl-form input:focus { outline: none; border-color: rgba(255,255,255,0.35); }
.mt-nl-form button {
  background: var(--mt-green);
  color: white;
  border: none;
  padding: 0 24px;
  border-radius: var(--mt-radius);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.mt-nl-form button:hover { background: #15803d; }
.mt-nl-trust { font-size: 12px; color: rgba(255,255,255,0.3); }

/* =====================
   AFFILIATE BOX
===================== */
.mt-affiliate-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--mt-radius);
  padding: 20px 22px;
  margin: 28px 0;
  position: relative;
}
.mt-affiliate-label {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--mt-gold);
  color: #78350f;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--mt-radius-full);
  letter-spacing: 0.06em;
}
.mt-affiliate-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 6px;
}
.mt-affiliate-box p { font-size: 13px; color: var(--mt-text-muted); margin-bottom: 14px; }
.mt-affiliate-btn {
  display: inline-block;
  background: var(--mt-green);
  color: white;
  padding: 10px 20px;
  border-radius: var(--mt-radius);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.mt-affiliate-btn:hover { background: #15803d; }
.mt-affiliate-disclaimer { display: block; font-size: 11px; color: var(--mt-text-light); margin-top: 8px; }

/* =====================
   FOOTER
===================== */
.mt-footer {
  background: var(--mt-white);
  border-top: 1px solid var(--mt-border);
  padding: 48px 0 0;
}
.mt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 36px;
}
.mt-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mt-footer-tagline {
  font-size: 13px;
  color: var(--mt-text-muted);
  line-height: 1.6;
  max-width: 200px;
  margin-bottom: 20px;
}
.mt-footer-social { display: flex; gap: 10px; }
.mt-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--mt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.mt-social-btn:hover { border-color: var(--mt-green); background: var(--mt-green-light); }
.mt-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-text);
  margin-bottom: 14px;
}
.mt-footer-link {
  display: block;
  font-size: 13px;
  color: var(--mt-text-muted);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.mt-footer-link:hover { color: var(--mt-green); }
.mt-footer-bottom {
  border-top: 1px solid var(--mt-border);
  padding: 18px 0;
}
.mt-footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mt-footer-copy { font-size: 12px; color: var(--mt-text-light); }
.mt-footer-links { display: flex; gap: 20px; }
.mt-footer-links a { font-size: 12px; color: var(--mt-text-light); }
.mt-footer-links a:hover { color: var(--mt-green); }

/* =====================
   SINGLE POST
===================== */
.mt-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--mt-green);
  z-index: 9999;
  transition: width 0.1s linear;
}
.mt-breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--mt-text-muted);
  border-bottom: 1px solid var(--mt-border);
}
.mt-breadcrumb a { color: var(--mt-green); }
.mt-breadcrumb span { margin: 0 6px; }
.mt-post-header {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--mt-border);
  margin-bottom: 36px;
}
.mt-post-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--mt-radius-full);
  margin-bottom: 14px;
}
.mt-post-title {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--mt-font-heading);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 750px;
}
.mt-post-subtitle {
  font-size: 18px;
  color: var(--mt-text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 20px;
}
.mt-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--mt-text-muted);
}
.mt-post-meta-author { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--mt-text); }
.mt-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mt-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--mt-green);
}
.mt-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.mt-post-content { max-width: 720px; }
.mt-post-content h2 { font-size: 24px; font-weight: 700; margin: 36px 0 14px; }
.mt-post-content h3 { font-size: 20px; font-weight: 600; margin: 28px 0 10px; }
.mt-post-content p { font-size: 16px; line-height: 1.8; color: #374151; margin-bottom: 20px; }
.mt-post-content ul, .mt-post-content ol {
  margin: 0 0 20px 24px;
}
.mt-post-content li { font-size: 16px; line-height: 1.7; color: #374151; margin-bottom: 6px; }
.mt-key-takeaway {
  border-left: 4px solid var(--mt-green);
  background: var(--mt-green-light);
  padding: 16px 20px;
  border-radius: 0 var(--mt-radius) var(--mt-radius) 0;
  margin: 24px 0;
}
.mt-key-takeaway-label { font-size: 11px; font-weight: 700; color: var(--mt-green); letter-spacing: 0.08em; margin-bottom: 6px; }
.mt-key-takeaway p { font-size: 15px; color: #166534; margin: 0; }

/* TOC Sidebar */
.mt-sidebar-sticky { position: sticky; top: 80px; }
.mt-toc {
  background: var(--mt-bg);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  padding: 18px;
  margin-bottom: 20px;
}
.mt-toc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mt-text-muted); margin-bottom: 12px; }
.mt-toc a {
  display: block;
  font-size: 13px;
  color: var(--mt-text-muted);
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: all 0.15s;
}
.mt-toc a:hover, .mt-toc a.active {
  color: var(--mt-green);
  border-left-color: var(--mt-green);
}

/* =====================
   CALCULATOR PAGES
===================== */
.mt-calc-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--mt-white);
  border: 1px solid var(--mt-border);
  border-radius: 14px;
  padding: 36px;
}
.mt-calc-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.mt-calc-sub { font-size: 15px; color: var(--mt-text-muted); margin-bottom: 32px; }
.mt-calc-field { margin-bottom: 24px; }
.mt-calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.mt-calc-value {
  font-size: 14px;
  color: var(--mt-green);
  font-weight: 700;
  background: var(--mt-green-light);
  padding: 3px 12px;
  border-radius: var(--mt-radius-full);
}
.mt-calc-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: var(--mt-border);
  border-radius: 4px;
  outline: none;
}
.mt-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mt-green);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.2);
}
.mt-calc-result {
  background: var(--mt-green-dark);
  border-radius: var(--mt-radius);
  padding: 28px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.mt-calc-result-item {}
.mt-calc-result-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.mt-calc-result-value { font-size: 22px; font-weight: 700; color: white; }
.mt-calc-result-value.highlight { color: var(--mt-green-bright); font-size: 28px; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .mt-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-subdomains { grid-template-columns: repeat(3, 1fr); }
  .mt-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .mt-nav, .mt-search-box, .mt-btn-primary { display: none; }
  .mt-hamburger { display: flex; }
  .mt-hero .container { grid-template-columns: 1fr; }
  .mt-hero-cards { display: none; }
  .mt-hero h1 { font-size: 34px; }
  .mt-stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .mt-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-articles-grid { grid-template-columns: 1fr; }
  .mt-subdomains { grid-template-columns: repeat(2, 1fr); }
  .mt-featured { flex-direction: column; text-align: center; gap: 20px; }
  .mt-featured-emoji { font-size: 60px; }
  .mt-footer-grid { grid-template-columns: 1fr 1fr; }
  .mt-post-layout { grid-template-columns: 1fr; }
  .mt-nl-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .mt-hero h1 { font-size: 28px; }
  .mt-hero-btns { flex-direction: column; }
  .mt-stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .mt-subdomains { grid-template-columns: 1fr 1fr; }
  .mt-footer-grid { grid-template-columns: 1fr; }
  .mt-calc-result { grid-template-columns: 1fr; }
}

/* =====================
   UTILITIES
===================== */
.text-green { color: var(--mt-green); }
.text-muted { color: var(--mt-text-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =====================
   NAVBAR v2 — NerdWallet style
===================== */
.mt-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 60px;
}
.mt-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
}
.mt-navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.07); }

/* Logo */
.mt-logo {
  display: flex; align-items: center; gap: 7px;
  font-size: 18px; font-weight: 700; color: #111;
  text-decoration: none; margin-right: 28px; flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.mt-logo em { font-style: normal; color: #16a34a; }
.mt-logo-mark {
  width: 30px; height: 30px; background: #1a5c38;
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
}
.mt-logo-mark svg { width: 15px; height: 15px; }

/* Nav triggers */
.mt-nav { display: flex; align-items: stretch; height: 100%; }
.mt-nav-item { position: relative; height: 60px; display: flex; align-items: center; }
.mt-nav-trigger {
  display: flex; align-items: center; gap: 4px;
  padding: 0 11px; height: 60px;
  font-size: 13.5px; font-weight: 500; color: #333;
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap; font-family: 'DM Sans', sans-serif;
  transition: color .15s, border-color .15s;
}
.mt-nav-trigger:hover, .mt-nav-item.open .mt-nav-trigger {
  color: #1a5c38; border-bottom-color: #1a5c38;
}
.mt-caret {
  display: inline-block; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s; margin-top: 2px;
}
.mt-nav-item.open .mt-caret { transform: rotate(-135deg) translateY(-2px); }
.mt-nav-tools { color: #1a5c38; font-weight: 600; }
.mt-badge-free {
  display: inline-block; font-size: 9.5px; font-weight: 700;
  background: #d1fae5; color: #065f46;
  border-radius: 20px; padding: 1px 6px; margin-left: 3px;
}

/* Mega dropdown */
.mt-mega {
  display: none;
  position: absolute; top: 60px; left: 0;
  background: #fff; border: 1px solid #e5e7eb;
  border-top: 2px solid #1a5c38;
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
  border-radius: 0 0 10px 10px;
  z-index: 200; padding: 22px 0 18px;
}
.mt-mega-right { left: auto; right: 0; }
.mt-nav-item.open .mt-mega { display: flex; }
.mt-mega-inner { display: flex; gap: 0; }

/* Columns */
.mt-col {
  padding: 0 24px; min-width: 190px;
  border-right: 1px solid #f3f4f6;
}
.mt-col:last-child { border-right: none; }
.mt-col-head {
  font-size: 10.5px; font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
}
.mt-dd-link {
  display: block; font-size: 13px; font-weight: 400; color: #374151;
  padding: 5px 0; text-decoration: none; line-height: 1.4;
  transition: color .12s;
}
.mt-dd-link:hover { color: #1a5c38; }
.mt-dd-link.bold { font-weight: 500; }
.mt-col-more { margin-top: 12px; padding-top: 10px; border-top: 1px solid #f3f4f6; }
.mt-col-more a { font-size: 12px; font-weight: 500; color: #1a5c38; text-decoration: none; }
.mt-col-more a:hover { text-decoration: underline; }

/* Right side */
.mt-nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.mt-search-wrap { position: relative; }
.mt-search-wrap svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: #9ca3af; }
.mt-search-wrap input {
  width: 175px; height: 34px; border: 1px solid #e5e7eb; border-radius: 20px;
  padding: 0 12px 0 34px; font-size: 13px; color: #111; background: #f9fafb;
  transition: border-color .2s, width .2s; outline: none;
}
.mt-search-wrap input:focus { border-color: #1a5c38; width: 210px; background: #fff; }
.mt-btn-primary {
  background: #1a5c38; color: #fff; border: none;
  padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: background .15s; display: inline-block;
}
.mt-btn-primary:hover { background: #14472b; }
.mt-btn-primary.mt-btn-lg { padding: 12px 28px; font-size: 15px; border-radius: 8px; }
.mt-btn-primary.mt-btn-sm { padding: 7px 14px; font-size: 13px; }
.mt-btn-primary.mt-btn-full { width: 100%; text-align: center; display: block; padding: 12px; }
.mt-btn-ghost {
  background: none; border: 1px solid #e5e7eb; color: #374151;
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: inherit; text-decoration: none; display: inline-block;
  transition: border-color .15s, color .15s;
}
.mt-btn-ghost:hover { border-color: #1a5c38; color: #1a5c38; }

/* Hamburger */
.mt-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.mt-hamburger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: all .3s; }

/* Mobile Menu */
.mt-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 85%; max-width: 360px;
  height: 100vh; background: #fff; z-index: 10000;
  box-shadow: 4px 0 24px rgba(0,0,0,.12); flex-direction: column;
  transform: translateX(-100%); transition: transform .3s ease;
  overflow-y: auto;
}
.mt-mobile-menu.open { transform: translateX(0); display: flex; }
.mt-mobile-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #f3f4f6; }
.mt-mobile-close { background: none; border: none; font-size: 24px; color: #666; cursor: pointer; line-height: 1; }
.mt-mobile-nav { flex: 1; padding: 12px 0; }
.mt-mob-section { padding: 12px 20px; border-bottom: 1px solid #f9f9f7; }
.mt-mob-label { font-size: 10px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.mt-mob-section a { display: block; font-size: 14px; color: #374151; padding: 6px 0; text-decoration: none; }
.mt-mob-section a:hover { color: #1a5c38; }
.mt-mob-tools .mt-mob-label { color: #1a5c38; }
.mt-mobile-footer { padding: 16px 20px; border-top: 1px solid #f3f4f6; }
.mt-overlay { display: none; inset: 0; background: rgba(0,0,0,.5); z-index: 9999; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.mt-overlay.open { display: block; opacity: 1; pointer-events: auto; }

/* =====================
   PAGE HERO
===================== */
.mt-page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid #e5e7eb;
}
.mt-page-hero--green {
  background: #052e16;
  color: #fff;
  border-bottom: none;
}
.mt-page-hero--green h1, .mt-page-hero--green .mt-breadcrumb,
.mt-page-hero--green .mt-breadcrumb a { color: rgba(255,255,255,.75); }
.mt-page-hero--green h1 { color: #fff; }
.mt-page-hero--light { background: #f9fafb; }
.mt-page-hero--tools { background: linear-gradient(135deg, #052e16 0%, #1a5c38 100%); color: #fff; border-bottom: none; }
.mt-page-hero--tools h1, .mt-page-hero--tools .mt-page-hero__sub { color: #fff; }
.mt-page-hero--tools .mt-breadcrumb, .mt-page-hero--tools .mt-breadcrumb a { color: rgba(255,255,255,.65); }
.mt-breadcrumb { font-size: 13px; color: #6b7280; margin-bottom: 14px; }
.mt-breadcrumb a { color: #6b7280; text-decoration: none; }
.mt-breadcrumb a:hover { color: #1a5c38; }
.mt-page-hero h1 { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.mt-page-hero__sub { font-size: 16px; color: #6b7280; max-width: 560px; line-height: 1.6; }
.mt-page-hero--green .mt-page-hero__sub,
.mt-page-hero--tools .mt-page-hero__sub { color: rgba(255,255,255,.8); }
.mt-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(74,222,128,.15); color: #4ade80;
  border: 1px solid rgba(74,222,128,.25); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.mt-hero-badge-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
.mt-section-eyebrow { font-size: 11px; font-weight: 700; color: #1a5c38; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.mt-section-label { font-size: 11px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }

/* =====================
   ABOUT PAGE
===================== */
.mt-about-wrap { padding: 60px 0; }
.mt-about-section { margin-bottom: 56px; }
.mt-about-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.mt-about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.mt-about-text p { color: #4b5563; line-height: 1.75; margin-bottom: 14px; font-size: 15px; }
.mt-about-stats-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 14px; padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mt-stat-item { text-align: center; }
.mt-stat-num { display: block; font-size: 32px; font-weight: 700; color: #1a5c38; line-height: 1; margin-bottom: 4px; }
.mt-stat-label { font-size: 12px; color: #6b7280; }
.mt-process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.mt-process-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; }
.mt-process-num { font-size: 32px; font-weight: 700; color: #e5e7eb; margin-bottom: 8px; line-height: 1; }
.mt-process-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.mt-process-card p { font-size: 14px; color: #6b7280; line-height: 1.6; }
.mt-categories-showcase { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 24px; }
.mt-cat-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; text-align: center; transition: all .2s; }
.mt-cat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.mt-cat-card__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; margin: 0 auto 12px; }
.mt-cat-card--finance .mt-cat-card__icon { background: #fef9c3; color: #854d0e; }
.mt-cat-card--insurance .mt-cat-card__icon { background: #fee2e2; color: #991b1b; }
.mt-cat-card--tech .mt-cat-card__icon { background: #ede9fe; color: #5b21b6; }
.mt-cat-card--health .mt-cat-card__icon { background: #dcfce7; color: #166534; }
.mt-cat-card--travel .mt-cat-card__icon { background: #dbeafe; color: #1e40af; }
.mt-cat-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.mt-cat-card p { font-size: 12px; color: #6b7280; line-height: 1.5; margin-bottom: 10px; }
.mt-cat-card a { font-size: 12px; color: #1a5c38; font-weight: 500; text-decoration: none; }
.mt-about-cta { background: #052e16; border-radius: 16px; padding: 48px 40px; text-align: center; color: #fff; }
.mt-about-cta h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.mt-about-cta p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 15px; }
.ml-12 { margin-left: 12px; }

/* =====================
   CONTACT PAGE
===================== */
.mt-contact-wrap { padding: 48px 0 64px; }
.mt-contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.mt-contact-form-box { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 32px; }
.mt-contact-form-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.mt-contact-note { font-size: 14px; color: #6b7280; margin-bottom: 24px; }
.mt-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt-form-group { margin-bottom: 18px; }
.mt-form-group label { display: block; font-size: 13px; font-weight: 500; color: #374151; margin-bottom: 6px; }
.mt-form-group input, .mt-form-group select, .mt-form-group textarea {
  width: 100%; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 10px 14px; font-size: 14px; color: #111; background: #fff;
  outline: none; transition: border-color .2s; font-family: 'DM Sans', sans-serif;
}
.mt-form-group input:focus, .mt-form-group select:focus, .mt-form-group textarea:focus { border-color: #1a5c38; }
.mt-form-group textarea { resize: vertical; }
.mt-form-feedback { margin-top: 12px; padding: 12px 16px; border-radius: 8px; font-size: 14px; }
.mt-form-feedback--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.mt-contact-info { display: flex; flex-direction: column; gap: 14px; }
.mt-contact-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px 22px; }
.mt-contact-icon { font-size: 20px; margin-bottom: 8px; }
.mt-contact-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.mt-contact-card p { font-size: 13.5px; color: #4b5563; line-height: 1.55; }
.mt-muted { color: #9ca3af !important; font-size: 12px !important; margin-top: 2px; }
.mt-contact-card--faq { background: #f9fafb; }
.mt-faq-item { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f3f4f6; }
.mt-faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mt-faq-item strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.mt-faq-item p { font-size: 13px; color: #6b7280; line-height: 1.5; }

/* =====================
   TOOLS HUB
===================== */
.mt-tools-wrap { padding: 48px 0 64px; }
.mt-tools-section { margin-bottom: 52px; }
.mt-tools-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.mt-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mt-tools-grid--compare { grid-template-columns: repeat(2, 1fr); }
.mt-tool-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px;
  text-decoration: none; color: #111; display: block; transition: all .2s;
}
.mt-tool-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); border-color: #d1fae5; transform: translateY(-2px); }
.mt-tool-card--primary { border-color: #bbf7d0; background: #f0fdf4; }
.mt-tool-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mt-tool-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.mt-tool-icon--green { background: #dcfce7; color: #166534; }
.mt-tool-icon--blue { background: #dbeafe; color: #1e40af; }
.mt-tool-icon--amber { background: #fef3c7; color: #92400e; }
.mt-tool-icon--purple { background: #ede9fe; color: #5b21b6; }
.mt-tool-icon--teal { background: #ccfbf1; color: #0f766e; }
.mt-tool-popular { font-size: 10.5px; font-weight: 600; background: #dcfce7; color: #166534; padding: 3px 9px; border-radius: 20px; }
.mt-tool-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.mt-tool-card p { font-size: 13.5px; color: #6b7280; line-height: 1.55; margin-bottom: 14px; }
.mt-tool-cta { font-size: 13px; font-weight: 600; color: #1a5c38; }
.mt-tool-card--compare { background: #f9fafb; }
.mt-compare-label { font-size: 10.5px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.mt-tools-newsletter { background: #052e16; border-radius: 16px; padding: 40px; text-align: center; color: #fff; }
.mt-tools-newsletter h2 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.mt-tools-newsletter p { color: rgba(255,255,255,.75); margin-bottom: 20px; }
.mt-nl-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.mt-nl-input { flex: 1; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 0 14px; font-size: 14px; background: rgba(255,255,255,.1); color: #fff; outline: none; }
.mt-nl-input::placeholder { color: rgba(255,255,255,.5); }
.mt-nl-input:focus { border-color: #4ade80; }

/* =====================
   CALCULATOR PAGE
===================== */
.mt-calc-page-wrap { padding: 40px 0 64px; }
.mt-calc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; margin-bottom: 48px; }
.mt-calc-box { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 28px; }
.mt-calc-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: #111; }
.mt-calc-field { margin-bottom: 24px; }
.mt-calc-field-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mt-calc-field-header label { font-size: 13.5px; font-weight: 500; color: #374151; }
.mt-calc-value-display { font-size: 16px; font-weight: 700; color: #1a5c38; }
.mt-slider {
  width: 100%; -webkit-appearance: none; height: 4px;
  border-radius: 4px; background: #e5e7eb; outline: none;
}
.mt-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: #1a5c38; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.mt-slider-bounds { display: flex; justify-content: space-between; font-size: 11px; color: #9ca3af; margin-top: 4px; }
.mt-calc-results { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 20px; margin-top: 24px; }
.mt-result-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.mt-result-label { font-size: 13.5px; color: #4b5563; }
.mt-result-val { font-size: 15px; font-weight: 600; }
.mt-result-val--invested { color: #059669; }
.mt-result-val--gains { color: #1a5c38; }
.mt-result-val--big { font-size: 22px; font-weight: 700; color: #052e16; }
.mt-result-item--total { margin-top: 4px; }
.mt-result-divider { border-top: 1px solid #bbf7d0; margin: 8px 0; }
.mt-calc-chart { display: flex; align-items: center; gap: 20px; margin-top: 20px; justify-content: center; }
.mt-chart-legend { display: flex; flex-direction: column; gap: 8px; }
.mt-legend-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #4b5563; }
.mt-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mt-calc-sidebar { display: flex; flex-direction: column; gap: 16px; }
.mt-sidebar-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px 22px; }
.mt-sidebar-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.mt-sidebar-card p { font-size: 13.5px; color: #4b5563; line-height: 1.6; }
.mt-sidebar-card--cta { background: #f0fdf4; border-color: #bbf7d0; }
.mt-sidebar-link { display: block; font-size: 13.5px; color: #374151; padding: 6px 0; text-decoration: none; border-bottom: 1px solid #f3f4f6; }
.mt-sidebar-link:last-child { border-bottom: none; }
.mt-sidebar-link:hover { color: #1a5c38; }
.mt-numbered-list { padding-left: 20px; }
.mt-numbered-list li { font-size: 13.5px; color: #4b5563; line-height: 1.6; margin-bottom: 6px; }
.mt-calc-faq h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.mt-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mt-faq-grid .mt-faq-item { border: 1px solid #f3f4f6; border-radius: 10px; padding: 18px; border-bottom: 1px solid #f3f4f6; }
.mt-faq-grid .mt-faq-item strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 8px; }
.mt-faq-grid .mt-faq-item p { font-size: 13.5px; color: #6b7280; line-height: 1.6; }

/* =====================
   LEGAL PAGES
===================== */
.mt-legal-wrap { padding: 48px 0 64px; }
.mt-legal-content { max-width: 720px; }
.mt-legal-content h2 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.mt-legal-content h2:first-child { margin-top: 0; }
.mt-legal-content p { font-size: 15px; color: #4b5563; line-height: 1.75; margin-bottom: 14px; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .mt-nav { display: none; }
  .mt-hamburger { display: flex; margin-left: auto; }
  .mt-nav-right { display: none; }
  .mt-categories-showcase { grid-template-columns: repeat(3, 1fr); }
  .mt-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-calc-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mt-about-2col { grid-template-columns: 1fr; }
  .mt-process-grid { grid-template-columns: 1fr; }
  .mt-categories-showcase { grid-template-columns: repeat(2, 1fr); }
  .mt-contact-grid { grid-template-columns: 1fr; }
  .mt-tools-grid { grid-template-columns: 1fr; }
  .mt-tools-grid--compare { grid-template-columns: 1fr; }
  .mt-faq-grid { grid-template-columns: 1fr; }
  .mt-page-hero h1 { font-size: 26px; }
  .mt-form-row--2 { grid-template-columns: 1fr; }
  .mt-nl-form { flex-direction: column; }
}

/* =====================
   NEWSLETTER v2
===================== */
.mt-newsletter {
  background: #052e16;
  padding: 64px 0;
  margin-top: 80px;
}
.mt-nl-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.mt-nl-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #4ade80;
  background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.2);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.mt-nl-left h2 {
  font-size: 32px; font-weight: 700; color: #fff;
  margin-bottom: 10px; line-height: 1.2;
}
.mt-nl-left p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.mt-nl-trust-list { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
.mt-nl-trust-list li {
  font-size: 13px; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 5px;
}
.mt-nl-trust-list li::before { content: '✓'; color: #4ade80; font-weight: 700; }
.mt-nl-form-wrap { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px; }
.mt-nl-form-wrap label { display: block; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.mt-nl-form-wrap input {
  width: 100%; height: 42px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  padding: 0 14px; font-size: 14px; color: #fff; margin-bottom: 14px; outline: none;
  font-family: 'DM Sans', sans-serif; transition: border-color .2s;
}
.mt-nl-form-wrap input::placeholder { color: rgba(255,255,255,.3); }
.mt-nl-form-wrap input:focus { border-color: #4ade80; }
#mt-nl-msg { margin-top: 10px; font-size: 13.5px; }

/* =====================
   FOOTER v2
===================== */
.mt-footer { background: #111827; color: #d1d5db; padding: 56px 0 0; }
.mt-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1f2937;
}
.mt-footer-brand {}
.mt-footer-tagline { font-size: 13.5px; color: #6b7280; line-height: 1.65; margin-bottom: 20px; max-width: 260px; }
.mt-footer-social { display: flex; gap: 10px; }
.mt-social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: #1f2937; border: 1px solid #374151;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; transition: all .2s;
}
.mt-social-icon:hover { background: #1a5c38; border-color: #1a5c38; color: #fff; }
.mt-social-icon svg { width: 15px; height: 15px; }
.mt-footer-col {}
.mt-footer-col-title {
  font-size: 11px; font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px; margin-top: 0;
}
.mt-footer-col-title--second { margin-top: 22px; }
.mt-footer-link {
  display: block; font-size: 13.5px; color: #9ca3af;
  padding: 4px 0; text-decoration: none;
  transition: color .15s; line-height: 1.45;
}
.mt-footer-link:hover { color: #4ade80; }
.mt-footer-link--tool { color: #6b7280; }
.mt-footer-link--tool:hover { color: #4ade80; }
.mt-footer-see-all {
  display: inline-block; margin-top: 10px;
  font-size: 12.5px; font-weight: 500; color: #4ade80;
  text-decoration: none;
}
.mt-footer-see-all:hover { text-decoration: underline; }
.mt-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-top: 1px solid #1f2937;
  flex-wrap: wrap; gap: 12px;
}
.mt-footer-bottom-left { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #6b7280; }
.mt-footer-dot { color: #374151; }
.mt-footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.mt-footer-bottom-links a { font-size: 13px; color: #6b7280; text-decoration: none; transition: color .15s; }
.mt-footer-bottom-links a:hover { color: #d1d5db; }

/* Newsletter responsive */
@media (max-width: 900px) {
  .mt-nl-inner { grid-template-columns: 1fr; gap: 32px; }
  .mt-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mt-footer-top { grid-template-columns: 1fr; }
  .mt-footer-bottom { flex-direction: column; text-align: center; }
  .mt-nl-trust-list { flex-direction: column; gap: 8px; }
}

/* =====================
   BREADCRUMBS
===================== */
.mt-breadcrumbs {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  font-size: 13px;
  color: #9ca3af;
}
.mt-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.mt-bc-link { color: #6b7280; text-decoration: none; }
.mt-bc-link:hover { color: #1a5c38; }
.mt-bc-sep { color: #d1d5db; }
.mt-bc-current { color: #374151; }

/* =====================
   POST META BAR (reading time, date, author)
===================== */
.mt-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 20px;
  flex-wrap: wrap;
}
.mt-post-meta-item { font-size: 13px; color: #6b7280; }
.mt-post-meta-sep { color: #d1d5db; font-size: 12px; }

/* =====================
   SEO META BOX STYLES (admin)
===================== */
.mt-seo-box input:focus,
.mt-seo-box textarea:focus,
.mt-seo-box select:focus {
  border-color: #1a5c38;
  outline: none;
  box-shadow: 0 0 0 2px rgba(26,92,56,.1);
}
