/* build:1781977470 */

/* ============================================================
   PRO MARKETING TRENDS — Design System
   Two-Tone Teal (Green) — Medium & Light | Poppins + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --blue-light:   #E0F2F1;
  --blue-mid:     #80CBC4;
  --blue-dark:    #00574B;
  --blue-deep:    #00796B;
  --blue-accent:  #009688;
  --blue-bright:  #4DB6AC;
  --blue-subtle:  #E8F5E9;
  --white:        #FFFFFF;
  --grey-100:     #E8F5E9;
  --grey-200:     #E0F2F1;
  --grey-300:     #80CBC4;
  --grey-600:     #4E9688;
  --text-dark:    #1A2E2A;
  --text-mid:     #1A3830;
  --text-light:   #4E9688;
  --success:      #1A9E6B;
  --success-bg:   #E6F9F2;
  --warning:      #D97706;
  --warning-bg:   #FEF3C7;
  --danger:       #DC2626;
  --danger-bg:    #FEE2E2;
  --info-bg:      #E8F5E9;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 4px rgba(0,96,96,0.08);
  --shadow-md:    0 4px 16px rgba(0,96,96,0.12);
  --shadow-lg:    0 8px 32px rgba(0,96,96,0.16);
  --shadow-card:  0 2px 12px rgba(0,96,96,0.10);
  --container:    1160px;
  --sidebar-w:    320px;
  --nav-h:        68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.7; color: var(--text-dark); background: var(--white); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; color: var(--blue-deep); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1.1rem; color: var(--text-mid); }
a { color: var(--blue-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .4rem; color: var(--text-mid); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* NAV */
.site-nav { position: sticky; top: 0; z-index: 1000; background: #001418; height: var(--nav-h); box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--white) !important; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; }
.nav-logo span { color: var(--blue-bright); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav-links li { margin: 0; }
.nav-links a { color: rgba(255,255,255,0.82) !important; font-size: .875rem; font-weight: 500; padding: 8px 12px; border-radius: var(--radius-sm); transition: background .2s, color .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.12); color: var(--white) !important; }
.nav-cta { background: var(--blue-accent) !important; color: var(--white) !important; font-weight: 600 !important; padding: 9px 18px !important; border-radius: var(--radius-md) !important; }
.nav-cta:hover { background: var(--blue-bright) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.page-hero { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 60%, #00796B 100%); padding: 56px 0 48px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234DB6AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: .8rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.75) !important; }
.breadcrumb a:hover { color: var(--white) !important; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.9); }
.hero-tag { display: inline-block; background: rgba(112,184,184,0.25); border: 1px solid rgba(112,184,184,0.4); color: var(--blue-bright); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; max-width: 700px; }
.hero-desc { color: rgba(255,255,255,0.8) !important; font-size: 1.05rem; max-width: 640px; margin-bottom: 0; }

/* HOME HERO */
.home-hero { background: #001418; padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
.home-hero .hero-tag { color: #ffffff; display: block; text-align: center; }
.home-hero::before { content: ''; position: absolute; inset: 0; background: none; pointer-events: none; }
.home-hero h1 { color: #ffffff; font-size: clamp(1.8rem, 4.5vw, 3.2rem); margin-bottom: 18px; max-width: 100%; white-space: nowrap; margin-left: auto; margin-right: auto; text-align: center; }
.home-hero h1 em { font-style: normal; color: #ffffff; }
.home-hero .hero-sub { color: #ffffff !important; font-size: clamp(0.9rem, 1.6vw, 1.2rem); max-width: 100%; white-space: normal; margin: 0 auto 32px; text-align: center; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .stat-num { display: block; font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: #ffffff; line-height: 1; }
.hero-stat .stat-label { font-size: .78rem; color: #ffffff; text-transform: uppercase; letter-spacing: .5px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.home-hero .btn-outline { color: #ffffff; border-color: #ffffff; }
.home-hero .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #ffffff; color: #ffffff; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-md); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .2s; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--blue-accent); color: var(--white); border-color: var(--blue-accent); }
.btn-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(48,160,160,0.35); }
.btn-outline { background: transparent; color: #001418; border-color: #001418; }
.btn-outline:hover { background: rgba(0,20,24,0.08); border-color: #001418; color: #001418; transform: translateY(-2px); }
.btn-blue { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }
.btn-blue:hover { background: var(--blue-accent); border-color: var(--blue-accent); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .8rem; }
.btn-calculate { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent)); color: var(--white); border: none; border-radius: var(--radius-md); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .25s; letter-spacing: .3px; }
.btn-calculate:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,96,96,0.35); }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--grey-200); box-shadow: var(--shadow-card); overflow: visible; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.review-card > img:first-child { width: 100%; height: auto; display: block; flex-shrink: 0; }
.card-thumb { width: 100%; overflow: hidden; line-height: 0; order: -1; }
.card-thumb img { width: 100%; height: auto; display: block; }
.review-card { display: flex; flex-direction: column; }
.review-card .card-header { order: 0; }
.review-card .card-body { order: 1; }
.review-card .card-footer { order: 2; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-header { background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark)); padding: 20px 24px 18px; display: flex; align-items: center; gap: 12px; }
.card-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.card-header h3 { color: var(--white); font-size: 1rem; margin: 0; line-height: 1.3; }
.card-body { padding: 20px 24px; flex: 1; }
.card-body p { font-size: .9rem; color: var(--text-light); margin-bottom: 0; line-height: 1.6; }
.card-footer { padding: 14px 24px 20px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .875rem; color: var(--blue-accent); }
.card-link:hover { color: var(--blue-dark); }
.card-link::after { content: ' →'; }
.stars { color: #F59E0B; font-size: .9rem; letter-spacing: 1px; }
.score-badge { background: var(--blue-accent); color: var(--white); font-weight: 700; font-size: .85rem; padding: 4px 10px; border-radius: var(--radius-sm); margin-left: auto; }

/* CARD GRIDS */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* SECTIONS */
.section { padding: 64px 0; }
.section-alt { background: var(--blue-subtle); }
.section-dark { background: var(--blue-deep); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; background: var(--blue-mid); color: var(--blue-dark); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--blue-deep); margin-bottom: 12px; }
.section-sub { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 36px; }

/* ARTICLE LAYOUT */
.article-wrap { display: grid; grid-template-columns: 1fr var(--sidebar-w); gap: 40px; align-items: start; }
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); margin-bottom: 28px; font-size: .82rem; color: var(--text-light); }
.meta-tag { background: var(--blue-mid); color: var(--blue-dark); padding: 3px 10px; border-radius: 12px; font-weight: 600; font-size: .75rem; }

/* TOC */
.toc { background: var(--blue-subtle); border: 1px solid var(--blue-mid); border-left: 4px solid var(--blue-accent); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 32px; }
.toc h4 { font-size: .875rem; text-transform: uppercase; letter-spacing: .5px; color: var(--blue-dark); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .4rem; }
.toc a { color: var(--blue-accent); font-size: .875rem; }
.toc a:hover { color: var(--blue-dark); }

/* CONTENT */
.article-content h2 { font-size: 1.5rem; margin: 36px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-mid); color: var(--blue-deep); }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--blue-dark); }
.article-content ul, .article-content ol { margin-bottom: 1.2rem; }

/* CALLOUT BOXES */
.callout { border-radius: var(--radius-md); padding: 18px 20px; margin: 24px 0; display: flex; gap: 14px; align-items: flex-start; }
.callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.callout-body h4 { font-size: .875rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.callout-body p { margin: 0; font-size: .9rem; }
.callout-tip { background: var(--info-bg); border-left: 4px solid var(--blue-accent); }
.callout-tip .callout-body h4 { color: var(--blue-dark); }
.callout-warning { background: var(--warning-bg); border-left: 4px solid var(--warning); }
.callout-warning .callout-body h4 { color: var(--warning); }
.callout-important { background: var(--success-bg); border-left: 4px solid var(--success); }
.callout-important .callout-body h4 { color: var(--success); }

/* AFFILIATE DISCLOSURE */
.affiliate-disclosure { background: #FFF8E1; border: 1px solid #F59E0B; border-radius: var(--radius-md); padding: 12px 16px; font-size: .82rem; color: #78350F; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 8px; }
.affiliate-disclosure strong { color: #92400E; }

/* KEY POINTS */
.key-points { background: var(--blue-subtle); border: 1px solid var(--blue-mid); border-radius: var(--radius-lg); padding: 24px 28px; margin: 28px 0; }
.key-points h4 { color: var(--blue-dark); font-size: 1rem; margin-bottom: 14px; }
.key-points ul { list-style: none; padding: 0; margin: 0; }
.key-points li { padding: 6px 0 6px 26px; position: relative; font-size: .9rem; border-bottom: 1px solid var(--grey-200); }
.key-points li:last-child { border-bottom: none; }
.key-points li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-accent); font-weight: 700; }

/* QUICK VERDICT */
.quick-verdict { background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark)); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 28px; display: flex; align-items: center; gap: 24px; }
.verdict-score { flex-shrink: 0; text-align: center; }
.verdict-num { display: block; font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--blue-bright); line-height: 1; }
.verdict-label { color: rgba(255,255,255,0.7); font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; }
.verdict-body h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.verdict-body p { color: rgba(255,255,255,0.8) !important; font-size: .9rem; margin: 0; }

/* PROS CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros { background: var(--success-bg); border: 1px solid #A7F3D0; border-radius: var(--radius-md); padding: 20px; }
.cons { background: var(--danger-bg); border: 1px solid #FECACA; border-radius: var(--radius-md); padding: 20px; }
.pros h4 { color: var(--success); font-size: .875rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.cons h4 { color: var(--danger); font-size: .875rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { font-size: .875rem; padding: 5px 0 5px 20px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* RATING BREAKDOWN */
.rating-breakdown { margin: 24px 0; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: .875rem; }
.rating-label { min-width: 140px; color: var(--text-mid); }
.rating-bar { flex: 1; height: 8px; background: var(--grey-200); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--blue-dark), var(--blue-accent)); border-radius: 4px; transition: width .6s ease; }
.rating-val { min-width: 30px; text-align: right; font-weight: 600; color: var(--blue-dark); }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 24px 0; font-size: .9rem; }
.compare-table th { background: var(--blue-dark); color: var(--white); padding: 14px 18px; text-align: left; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .85rem; }
.compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--grey-200); color: var(--text-mid); }
.compare-table tr:nth-child(even) td { background: var(--blue-subtle); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--success); font-weight: 700; }
.compare-table .cross { color: var(--danger); font-weight: 700; }
.compare-table .winner { color: var(--blue-accent); font-weight: 600; }

/* CALCULATOR */
.calc-wrap { background: var(--white); border: 2px solid var(--blue-mid); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); margin: 0 0 32px; }
.calc-header { background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark)); padding: 24px 32px; display: flex; align-items: center; gap: 16px; }
.calc-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.15); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.calc-header h2 { color: var(--white); font-size: 1.2rem; margin: 0; }
.calc-header p { color: rgba(255,255,255,0.75); font-size: .85rem; margin: 4px 0 0; }
.calc-form { padding: 32px; border-bottom: 1px solid var(--grey-200); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-dark); font-family: 'Poppins', sans-serif; }
.form-group input, .form-group select { padding: 11px 14px; border: 1.5px solid var(--grey-300); border-radius: var(--radius-md); font-size: .9rem; font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(48,160,160,0.15); }
.form-group .hint { font-size: .75rem; color: var(--text-light); }
.calc-results { padding: 32px; display: none; animation: slideDown .4s ease; }
.calc-results.show { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.results-header { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--blue-deep); margin-bottom: 20px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.result-stat { background: var(--blue-subtle); border: 1px solid var(--blue-mid); border-radius: var(--radius-md); padding: 18px 16px; text-align: center; }
.result-stat.highlight { background: linear-gradient(135deg, var(--blue-dark), var(--blue-accent)); border-color: var(--blue-accent); }
.result-stat .stat-val { display: block; font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--blue-dark); line-height: 1.1; margin-bottom: 4px; }
.result-stat.highlight .stat-val { color: var(--white); }
.result-stat .stat-name { font-size: .75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.result-stat.highlight .stat-name { color: rgba(255,255,255,0.8); }
.result-table { width: 100%; border-collapse: collapse; font-size: .875rem; margin-bottom: 20px; }
.result-table th { background: var(--blue-dark); color: var(--white); padding: 10px 14px; text-align: left; font-size: .8rem; font-weight: 600; }
.result-table td { padding: 10px 14px; border-bottom: 1px solid var(--grey-200); }
.result-table tr:nth-child(even) td { background: var(--blue-subtle); }
.result-table tr:last-child td { background: var(--grey-100); font-weight: 600; color: var(--blue-dark); }
.benchmark { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-top: 12px; }
.benchmark-good { background: var(--success-bg); color: var(--success); }
.benchmark-avg  { background: var(--warning-bg); color: var(--warning); }
.benchmark-poor { background: var(--danger-bg); color: var(--danger); }

/* FAQ */
.faq-wrap { margin: 0; }
.faq-item { border: 1px solid var(--grey-200); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: var(--white); border: none; padding: 16px 20px; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: var(--blue-deep); transition: background .2s; }
.faq-q:hover { background: var(--blue-subtle); }
.faq-q.active { background: var(--blue-subtle); color: var(--blue-accent); }
.faq-arrow { font-size: .7rem; color: var(--blue-accent); transition: transform .3s; flex-shrink: 0; }
.faq-q.active .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 16px 20px; background: var(--grey-100); font-size: .9rem; color: var(--text-mid); line-height: 1.7; border-top: 1px solid var(--grey-200); }
.faq-a.open { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* SIDEBAR */
.sidebar-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.sidebar-card-header { background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark)); padding: 14px 18px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .85rem; color: var(--white); text-transform: uppercase; letter-spacing: .5px; }
.sidebar-card-body { padding: 18px; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid var(--grey-200); margin: 0; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: flex; align-items: center; gap: 8px; padding: 10px 4px; font-size: .875rem; color: var(--text-dark); font-weight: 500; transition: color .2s; }
.sidebar-links a:hover { color: var(--blue-accent); }
.sidebar-links a::before { content: '→'; color: var(--blue-accent); font-size: .75rem; }
.sidebar-cta-btn { display: block; width: 100%; padding: 11px 16px; background: var(--blue-accent); color: var(--white) !important; border-radius: var(--radius-md); font-weight: 600; font-size: .875rem; text-align: center; margin-bottom: 8px; transition: background .2s, transform .15s; }
.sidebar-cta-btn:hover { background: var(--blue-dark); color: var(--white) !important; transform: translateY(-1px); }
.sidebar-disclaimer { background: var(--grey-100); border-radius: var(--radius-md); padding: 14px; font-size: .78rem; color: var(--text-light); line-height: 1.5; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust-item { text-align: center; padding: 28px 20px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--grey-200); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue-light), var(--blue-mid)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; }
.trust-item h4 { font-size: .95rem; margin-bottom: 8px; }
.trust-item p { font-size: .82rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* FOOTER */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.75); padding: 60px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .875rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.65) !important; font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--blue-bright) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,0.45); }
.footer-legal a { color: rgba(255,255,255,0.55) !important; margin-left: 18px; }
.footer-legal a:hover { color: rgba(255,255,255,0.9) !important; }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--blue-dark); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all .25s; z-index: 500; }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--blue-accent); transform: translateY(-3px); }

/* UTILITY */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.error-msg { color: var(--danger); font-size: .82rem; margin-top: 4px; display: none; }
.error-msg.show { display: block; }
.divider { border: none; border-top: 1px solid var(--grey-200); margin: 32px 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #001418; padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .home-hero { padding: 56px 0 48px; }
  .section { padding: 48px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quick-verdict { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .home-hero h1 { font-size: clamp(1.4rem, 6vw, 2rem) !important; white-space: normal !important; }
  .home-hero .hero-sub { font-size: 0.88rem !important; white-space: normal !important; max-width: 100% !important; }
  .calc-form, .calc-results { padding: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* Affiliate CTA button class - reduces inline CSS */
.affiliate-cta-btn { display: inline-block; background: linear-gradient(135deg,#f97316,#ea580c); color: #fff; text-decoration: none; border-radius: 50px; padding: 15px 28px; box-shadow: 0 5px 20px rgba(249,115,22,0.35); max-width: 500px; width: 100%; box-sizing: border-box; font-family: 'Poppins', sans-serif; text-align: center; }
.sidebar-banner-wrap { text-align: center; margin-bottom: 16px; }
.sidebar-banner { text-align: center; margin-bottom: 16px; }

/* Review page repeated inline style extraction */
.text-link-accent { color: var(--blue-accent); font-weight: 600; }
.center-section { margin: 28px auto; text-align: center; }
.cta-label-bold { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.cta-subtext { font-size: .76rem; opacity: .88; }
.featured-post-image-style { display: block; width: 100%; max-width: 100%; height: auto; border-radius: 10px; margin-bottom: 28px; }
.review-pill-badge { display: inline-block; background: #E0F2F1; color: #009688; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 12px; border-radius: 20px; margin-bottom: 12px; }
.btn-outline-teal { display: inline-block; background: transparent; border: 1.5px solid #009688; color: #009688; padding: 11px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem; text-decoration: none; width: auto; }
.btn-solid-teal { display: inline-block; background: #009688; color: #fff; padding: 13px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; text-decoration: none; width: auto; }
.review-card-img { width: 100%; height: 209px; object-fit: cover; object-position: center top; display: block; border-radius: 10px 10px 0 0; margin: 0; }
.review-card-meta { display: flex; align-items: center; gap: 8px; margin-top: 6px; }

/* Reviews nav dropdown (review pages only) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { font-size: .7rem; transition: transform .2s; }
.nav-dropdown-menu { list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--white); border-radius: var(--radius-md); box-shadow: 0 12px 32px rgba(0,0,0,0.18); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 1100; }
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a { display: block; color: var(--text-dark) !important; font-size: .85rem; font-weight: 500; padding: 10px 14px; border-radius: var(--radius-sm); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--grey-100); color: var(--blue-accent) !important; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

@media (max-width: 768px) {
  .nav-dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; max-height: 0; overflow: hidden; padding: 0 0 0 12px; transition: max-height .25s ease; background: rgba(0,0,0,0.12); border-radius: var(--radius-sm); margin-top: 4px; }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 600px; padding: 8px 0 8px 12px; }
  .nav-dropdown-menu a { color: rgba(255,255,255,0.85) !important; }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white) !important; }
  .nav-caret { display: inline-block; }
}

/* ============================================================
   CALCULATOR WIDGET STYLES
   ============================================================ */

.calc-widget {
  margin: 0 0 40px;
}

.calc-box {
  background: #fff;
  border: 2px solid #E8EFF7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,45,79,0.08);
}

.calc-box h3 {
  background: linear-gradient(135deg, #0D2D4F, #1A4A7A);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  padding: 20px 28px;
  letter-spacing: 0.2px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px 28px 8px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-field label {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #4a6a85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #C5D8F0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: 'Poppins', sans-serif;
  color: #0D2D4F;
  background: #F8FAFF;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

.calc-field input:focus {
  outline: none;
  border-color: #2E7FD4;
  box-shadow: 0 0 0 3px rgba(46,127,212,0.12);
  background: #fff;
}

.calc-btn {
  display: block;
  width: calc(100% - 56px);
  margin: 20px 28px 28px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #1A4A7A, #2E7FD4);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(46,127,212,0.3);
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,127,212,0.4);
}

.calc-results {
  display: none;
  border-top: 2px solid #E8EFF7;
  background: #F8FAFF;
  padding: 24px 28px 28px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-item {
  background: #fff;
  border: 1.5px solid #E8EFF7;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-item.highlight {
  background: linear-gradient(135deg, #0D2D4F, #1A4A7A);
  border-color: #1A4A7A;
  grid-column: 1 / -1;
}

.result-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6a8aaa;
}

.result-item.highlight .result-label {
  color: rgba(255,255,255,0.7);
}

.result-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0D2D4F;
}

.result-item.highlight .result-value {
  color: #fff;
  font-size: 1.6rem;
}

@media (max-width: 600px) {
  .calc-grid { grid-template-columns: 1fr; padding: 20px 20px 8px; }
  .calc-box h3 { padding: 16px 20px; font-size: 1rem; }
  .calc-btn { width: calc(100% - 40px); margin: 16px 20px 20px; }
  .calc-results { padding: 20px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-item.highlight { grid-column: 1; }
}


/* SEO Pilot Fix: Replace excessive inline styles */
.review-section-pad { padding-top: 40px; padding-bottom: 80px; }
.section-cta-label { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: #00796B; margin-bottom: 8px; }
.section-cta-sub { font-size: .88rem; color: #4E9688; margin-bottom: 20px; line-height: 1.55; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-flex-col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.review-checklist-box { background: #f8faff; border: 1.5px solid #80CBC4; border-radius: 14px; padding: 28px 24px; margin: 36px 0; text-align: center; }
.review-img-responsive { max-width: 100%; height: auto; border-radius: 8px; }
.js-hidden { display: none; }
.review-mt48 { margin-top: 48px; }
.review-mb28 { margin: 28px 0; }
.review-sub-list { margin: 8px 0 0; padding-left: 1.2rem; }
.text-accent-bold { color: var(--blue-accent); font-weight: 600; }
.review-warn-box { background: #f6fff9; border: 1.5px solid #F4A7B5; border-radius: 14px; padding: 28px 24px; margin: 36px 0; text-align: center; }
.badge-green { display: inline-block; background: #dcfce7; color: #16a34a; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 12px; border-radius: 20px; margin-bottom: 12px; }
.btn-primary-teal { display: inline-block; background: #009688; color: #fff; padding: 13px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; text-decoration: none; width: auto; }
.btn-outline-teal { display: inline-block; background: transparent; border: 1.5px solid #009688; color: #009688; padding: 11px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem; text-decoration: none; width: auto; }
.btn-outline-light { display: inline-block; background: transparent; border: 1.5px solid #90B8B8; color: #4E9688; padding: 11px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .88rem; text-decoration: none; width: auto; }
.review-mb32 { margin-bottom: 32px; }
.review-meta-text { font-size: .85rem; color: var(--text-light); margin-bottom: 24px; }
.review-mb20 { margin-bottom: 20px; }

/* SEO Pilot Fix Round 2: Additional inline style classes */
.review-callout-box { background: #f0faf8; border-left: 4px solid #00796B; border-radius: 8px; padding: 20px 22px; margin: 24px 0; }
.review-callout-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #00796B; margin-bottom: 8px; }
.review-callout-text { font-size: .95rem; line-height: 1.65; color: #0D2D4F; margin: 0; }
.review-hero-img { width: 100%; height: auto; border-radius: 12px; display: block; }
.sidebar-product-border { border: 2px solid #f97316; }
.sidebar-orange-card { background: linear-gradient(135deg,#f97316,#ea580c); color: #fff; text-align: center; }
.sidebar-orange-inner { text-align: center; padding: 16px; }
.sidebar-orange-btn { display: block; background: linear-gradient(135deg,#f97316,#ea580c); color: #fff; text-decoration: none; border-radius: 50px; padding: 12px 20px; font-weight: 700; font-size: .88rem; box-shadow: 0 4px 16px rgba(249,115,22,0.35); }

/* Space between hero section and calculator/content below */
.article-wrap {
  padding-top: 48px;
}
.article-sidebar {
  padding-top: 12px;
}


/* Screen-reader-only text — visually hidden, still accessible.
   Was previously only defined inline on the homepage; several other
   pages (blog index, blog posts, free-marketing-tool-stack) use this
   same class but had no matching rule in the shared stylesheet, so
   the text was showing up visibly instead of being hidden. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ==========================================================================
   Share / Embed feature for calculator pages
   ========================================================================== */

/* Embed mode (?embed=true) — shows only the calculator widget, hides
   nav, hero, article content, sidebar, footer, and the share/embed bar
   itself. Only ever applied on calculator pages (calc-widget presence
   is checked in JS before this class is ever added). */
body.embed-mode nav.site-nav,
body.embed-mode .page-hero,
body.embed-mode .article-content,
body.embed-mode .article-sidebar,
body.embed-mode .site-footer,
body.embed-mode .scroll-top,
body.embed-mode .share-embed-bar {
  display: none !important;
}
body.embed-mode {
  background: #fff;
  margin: 0;
}
body.embed-mode .article-wrap {
  padding-top: 0;
}
body.embed-mode .container {
  max-width: 100%;
  padding: 14px;
  margin: 0;
}
body.embed-mode .calc-widget {
  margin: 0;
}

/* Share / Embed buttons, shown at the top of the calculator box */
.share-embed-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.share-embed-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #80CBC4;
  color: #00796B;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: background .15s;
}
.share-embed-btn:hover {
  background: #E0F2F1;
}
.article-share-bar {
  margin-top: 16px;
}

/* Share/Embed modal */
.share-embed-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,20,24,.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.share-embed-modal-overlay.active {
  display: flex;
}
.share-embed-modal {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  position: relative;
}
.share-embed-modal h4 {
  font-family: 'Poppins', sans-serif;
  color: #00796B;
  margin: 0 0 12px;
  font-size: 1.1rem;
  padding-right: 24px;
}
.share-embed-modal textarea {
  width: 100%;
  min-height: 90px;
  font-family: monospace;
  font-size: .8rem;
  padding: 10px;
  border: 1.5px solid #80CBC4;
  border-radius: 8px;
  resize: vertical;
  box-sizing: border-box;
}
.share-embed-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}
.share-embed-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #4E9688;
  line-height: 1;
  padding: 0;
}
.share-links-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.share-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E0F2F1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
}
