/* Start custom CSS for html, class: .elementor-element-a0435aa */:root {
    --cream: #FAF8F3;
    --ink: #1A1814;
    --ink-light: #4A473F;
    --ink-muted: #7A776D;
    --accent: #2E6B4F;
    --accent-light: #E8F2EC;
    --accent-warm: #C4622D;
    --accent-warm-light: #FBF0E8;
    --gold: #B8963E;
    --gold-light: #FBF5E6;
    --border: #E4E0D6;
    --white: #FFFFFF;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    font-size: 17px;
  }

  /* ---- HEADER ---- */
  .site-header {
    background: var(--ink);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .site-header .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #AAA69E;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .site-header .dot { color: var(--accent); font-size: 20px; }

  /* ---- HERO ---- */
  .hero {
    background: var(--ink);
    padding: 80px 40px 90px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
  }
  .hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
  .hero-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,107,79,0.25);
    border: 1px solid rgba(46,107,79,0.4);
    color: #7ECFA0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }
  .hero-category::before { content: '●'; font-size: 8px; }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
  }
  .hero h1 em { font-style: italic; color: #7ECFA0; }
  .hero .subtitle {
    font-size: 18px;
    color: #AAA69E;
    max-width: 640px;
    line-height: 1.6;
    margin-bottom: 36px;
  }
  .hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6E6B63;
  }
  .hero-meta span { display: flex; align-items: center; gap: 6px; }
  .hero-meta .sep { color: #3A3834; }

  /* ---- MAIN LAYOUT ---- */
  .page-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  /* ---- TOC ---- */
  .toc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 40px;
    margin: 56px 0;
  }
  .toc-card h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 20px;
  }
  .toc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px; }
  .toc-list li { counter-increment: toc; }
  .toc-list a {
    color: var(--ink-light);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .toc-list a:hover { color: var(--accent); }
  .toc-list a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    min-width: 22px;
  }
  @media(max-width:600px){ .toc-list { grid-template-columns: 1fr; } }

  /* ---- ARTICLE SECTIONS ---- */
  .article-body { max-width: 760px; margin: 0 auto; }

  .section { margin-bottom: 70px; }

  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 4px 10px;
    background: var(--accent-light);
    border-radius: 4px;
  }
  .section-tag.warm { color: var(--accent-warm); background: var(--accent-warm-light); }
  .section-tag.gold { color: var(--gold); background: var(--gold-light); }

  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 20px;
  }
  h2.section-title em { font-style: italic; color: var(--accent); }

  h3.sub-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 36px;
    margin-bottom: 14px;
  }

  p { color: var(--ink-light); margin-bottom: 18px; }
  p strong { color: var(--ink); font-weight: 600; }

  /* ---- PROBLEM CARDS ---- */
  .problem-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 36px 0;
  }
  @media(max-width:680px){ .problem-trio { grid-template-columns: 1fr; } }

  .problem-card {
    border-radius: 12px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
  }
  .problem-card.red { background: #FBF0F0; border: 1px solid #F0C8C8; }
  .problem-card.orange { background: var(--accent-warm-light); border: 1px solid #EDD0BB; }
  .problem-card.blue { background: #EFF4FB; border: 1px solid #C2D4EE; }
  .problem-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.15;
  }
  .problem-card.red .num { color: #C03030; }
  .problem-card.orange .num { color: #C4622D; }
  .problem-card.blue .num { color: #2D5FA0; }
  .problem-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .problem-card p { font-size: 14px; margin: 0; color: var(--ink-light); }

  /* ---- TOOL DEEP-DIVE CARDS ---- */
  .tool-hero-card {
    border-radius: 16px;
    padding: 40px;
    margin: 36px 0;
    position: relative;
    overflow: hidden;
  }
  .tool-hero-card.green { background: var(--accent-light); border: 1px solid #C0DBC9; }
  .tool-hero-card.warm { background: var(--accent-warm-light); border: 1px solid #EDD0BB; }
  .tool-hero-card.gold { background: var(--gold-light); border: 1px solid #E0D0A0; }

  .tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .green .tool-badge { background: rgba(46,107,79,0.12); color: var(--accent); border: 1px solid rgba(46,107,79,0.25); }
  .warm .tool-badge { background: rgba(196,98,45,0.12); color: var(--accent-warm); border: 1px solid rgba(196,98,45,0.25); }
  .gold .tool-badge { background: rgba(184,150,62,0.12); color: var(--gold); border: 1px solid rgba(184,150,62,0.25); }

  .tool-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .tool-hero-card .tool-tagline {
    font-size: 16px;
    color: var(--ink-light);
    margin-bottom: 0;
  }

  /* ---- FEATURE LIST ---- */
  .feature-list { list-style: none; margin: 24px 0; }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15.5px;
    color: var(--ink-light);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 12px;
  }
  .icon.green { background: var(--accent-light); color: var(--accent); }
  .icon.warm { background: var(--accent-warm-light); color: var(--accent-warm); }
  .icon.gold { background: var(--gold-light); color: var(--gold); }
  .feature-list strong { color: var(--ink); font-weight: 600; }

  /* ---- CALLOUT BOXES ---- */
  .callout {
    border-radius: 10px;
    padding: 24px 28px;
    margin: 32px 0;
    border-left: 4px solid;
  }
  .callout.tip { background: var(--accent-light); border-color: var(--accent); }
  .callout.warn { background: var(--accent-warm-light); border-color: var(--accent-warm); }
  .callout.stat { background: var(--gold-light); border-color: var(--gold); }
  .callout-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .callout.tip .callout-label { color: var(--accent); }
  .callout.warn .callout-label { color: var(--accent-warm); }
  .callout.stat .callout-label { color: var(--gold); }
  .callout p { margin: 0; font-size: 15px; color: var(--ink-light); }
  .callout p strong { color: var(--ink); }

  /* ---- WORKFLOW STEPS ---- */
  .workflow { margin: 36px 0; }
  .workflow-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
  }
  .workflow-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .workflow-step .step-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .workflow-step .step-content p {
    font-size: 15px;
    margin: 0;
    color: var(--ink-light);
  }

  /* ---- COMPARISON TABLE ---- */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .compare-table th {
    background: var(--ink);
    color: #E8E5DE;
    padding: 14px 18px;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .compare-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--ink-light);
    vertical-align: top;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:hover td { background: var(--cream); }
  .compare-table td:first-child { font-weight: 500; color: var(--ink); }
  .check { color: var(--accent); font-weight: 700; }
  .cross { color: #C03030; }

  /* ---- QUOTE BLOCK ---- */
  .quote-block {
    border-left: 3px solid var(--accent);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--accent-light);
    border-radius: 0 10px 10px 0;
  }
  .quote-block p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .quote-block cite {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    font-style: normal;
  }

  /* ---- STATS GRID ---- */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
  }
  @media(max-width:600px){ .stats-grid { grid-template-columns: 1fr 1fr; } }
  .stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
  }
  .stat-card .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-card .big-num.warm { color: var(--accent-warm); }
  .stat-card .big-num.gold { color: var(--gold); }
  .stat-card p { font-size: 13px; margin: 0; color: var(--ink-muted); }

  /* ---- CTA BANNER ---- */
  .cta-banner {
    background: var(--ink);
    border-radius: 16px;
    padding: 48px 48px;
    margin: 56px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(46,107,79,0.15);
  }
  .cta-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 14px;
    position: relative;
  }
  .cta-banner p {
    color: #AAA69E;
    font-size: 16px;
    max-width: 540px;
    margin-bottom: 28px;
    position: relative;
  }
  .cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-primary { background: var(--accent); color: #FFFFFF; }
  .btn-primary:hover { background: #255940; }
  .btn-outline { background: transparent; color: #E8E5DE; border: 1px solid #3A3834; }
  .btn-outline:hover { background: rgba(255,255,255,0.05); }
  .btn-warm { background: var(--accent-warm); color: #FFFFFF; }
  .btn-warm:hover { background: #B0581F; }

  /* ---- INTEGRATION FLOW ---- */
  .integration-flow {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 36px 0;
    flex-wrap: wrap;
  }
  .int-box {
    flex: 1;
    min-width: 140px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
  }
  .int-box .tool-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .int-box .tool-role {
    font-size: 12px;
    color: var(--ink-muted);
  }
  .int-arrow {
    font-size: 20px;
    color: var(--accent);
    padding: 0 10px;
    font-weight: 300;
  }

  /* ---- FINAL VERDICT ---- */
  .verdict-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .verdict-row:last-child { border-bottom: none; }
  .verdict-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .vi-green { background: var(--accent-light); }
  .vi-warm { background: var(--accent-warm-light); }
  .vi-gold { background: var(--gold-light); }
  .verdict-row h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .verdict-row p { font-size: 14px; margin: 0; color: var(--ink-light); }

  /* ---- DIVIDER ---- */
  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 56px 0;
  }

  /* ---- AFFILIATE DISCLOSURE ---- */
  .disclosure {
    background: #F5F3EE;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 48px;
    font-size: 13px;
    color: var(--ink-muted);
  }
  .disclosure strong { color: var(--ink-light); }

  /* ---- FOOTER ---- */
  footer {
    background: var(--ink);
    color: #6E6B63;
    text-align: center;
    padding: 40px 24px;
    font-size: 13px;
    margin-top: 80px;
  }
  footer a { color: #AAA69E; text-decoration: none; }
</style>
</head>
<body>/* End custom CSS */