/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1C1C1C;
  background: #FAFAF5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2D5016; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color .2s; }
a:hover { color: #62B247; }
h1, h2, h3, h4, h5, h6 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; color: #1C1C1C; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ===== SKIP LINK ===== */
.ed-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 12px 24px;
  background: #2D5016;
  color: #FAFAF5;
  font-weight: 600;
  text-decoration: none;
}
.ed-skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* ===== SVG ICONS ===== */
.icon-check { fill: #62B247; flex-shrink: 0; vertical-align: middle; }

/* ===== LAYOUT UTILITIES ===== */
.ed-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ed-section { padding: 80px 0; }
.ed-section--alt { background: #F0EDE5; }
.ed-divider { border: none; border-top: 1px solid #D4CFC4; margin: 0; }

/* ===== NAVBAR ===== */
.ed-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FAFAF5;
  border-bottom: 1px solid #D4CFC4;
  padding: 0;
}
.ed-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.ed-navbar__logo img { height: 24px; width: auto; }
.ed-navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.ed-navbar__links a {
  font-size: 15px;
  font-weight: 500;
  color: #1C1C1C;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color .2s;
}
.ed-navbar__links a:hover { color: #62B247; }
.ed-navbar__links a.active { color: #62B247; }
.ed-navbar__cta {
  display: inline-block;
  padding: 10px 24px;
  background: #2D5016;
  color: #FAFAF5 !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: background .2s;
}
.ed-navbar__cta:hover { background: #62B247; color: #fff !important; }
.ed-hamburger {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ed-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1C1C1C;
  transition: transform .3s, opacity .3s;
}
.ed-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ed-hamburger.active span:nth-child(2) { opacity: 0; }
.ed-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu - hidden by default */
.ed-mobile-menu { display: none; }

/* ===== HERO ===== */
.ed-hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid #D4CFC4;
}
.ed-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ed-hero__kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #62B247;
  margin-bottom: 16px;
  display: block;
}
.ed-hero h1 {
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 24px;
}
.ed-hero h1 span { color: #62B247; }
.ed-hero__desc {
  font-size: 19px;
  color: #4A4A4A;
  line-height: 1.65;
  margin-bottom: 32px;
}
.ed-hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ed-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2D5016;
  color: #FAFAF5;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0;
  transition: background .2s;
  cursor: pointer;
}
.ed-btn:hover { background: #62B247; color: #fff; }
.ed-btn--outline {
  background: transparent;
  color: #2D5016;
  border: 2px solid #2D5016;
}
.ed-btn--outline:hover { background: #2D5016; color: #FAFAF5; }
.ed-hero__trust {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  font-size: 15px;
  color: #1C1C1C;
}
.ed-hero__trust .icon-check { fill: #62B247; margin-right: 6px; }
.ed-hero__free {
  font-weight: 600;
  font-size: 15px;
  color: #2D5016;
}
.ed-hero__img { position: relative; }
.ed-hero__img img { width: 100%; }

/* ===== DROP CAP ===== */
.ed-dropcap::first-letter {
  font-family: 'DM Serif Display', serif;
  float: left;
  font-size: 4.2em;
  line-height: 0.8;
  margin: 4px 14px 0 0;
  color: #2D5016;
}

/* ===== BOOST DELIVERABILITY ===== */
.ed-boost__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ed-boost__kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #62B247;
  margin-bottom: 12px;
  display: block;
}
.ed-boost h2 { font-size: 40px; margin-bottom: 24px; }
.ed-boost p { margin-bottom: 20px; color: #3A3A3A; }
.ed-boost p a { color: #2D5016; font-weight: 500; }

/* ===== INBOX NOT SPAM ===== */
.ed-inbox__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 60px;
  align-items: center;
}
.ed-inbox h2 { font-size: 38px; margin-bottom: 20px; }
.ed-inbox__desc { color: #3A3A3A; margin-bottom: 28px; }
.ed-inbox__desc a { color: #2D5016; font-weight: 500; }
.ed-check-list { display: flex; flex-direction: column; gap: 16px; }
.ed-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #D4CFC4;
}
.ed-check-item:last-child { border-bottom: none; }
.ed-check-item .icon-check { fill: #62B247; flex-shrink: 0; }

/* ===== FEATURES TABS ===== */
.ed-features h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.ed-features h2 span { color: #62B247; }
.ed-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 2px solid #D4CFC4;
}
.ed-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 14px 32px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.ed-tab-btn:hover { color: #2D5016; }
.ed-tab-btn.active {
  color: #2D5016;
  border-bottom-color: #2D5016;
}
.ed-tab-panel { display: none; }
.ed-tab-panel.active { display: block; }
.ed-tab-panel h3 {
  font-size: 30px;
  margin-bottom: 28px;
}
.ed-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 48px;
  margin-bottom: 32px;
}
.ed-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid #E8E4DC;
}
.ed-feature-item .icon-check { fill: #62B247; flex-shrink: 0; }
.ed-single-col { max-width: 600px; }
.ed-single-col .ed-feature-item { border-bottom: 1px solid #E8E4DC; }
.ed-process-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}
.ed-process-table th {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #62B247;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid #D4CFC4;
}
.ed-process-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E8E4DC;
  color: #3A3A3A;
  vertical-align: top;
}
.ed-process-table td:first-child {
  font-weight: 600;
  color: #1C1C1C;
  white-space: nowrap;
}
.ed-process-table tbody tr:last-child td { border-bottom: none; }

/* ===== PRICING ===== */
.ed-pricing h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 12px;
}
.ed-pricing h2 span { color: #62B247; }
.ed-pricing__badge {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.ed-pricing__badge span {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #62B247;
  border: 1px solid #62B247;
  padding: 5px 20px;
}
.ed-pricing__desc {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  color: #4A4A4A;
}
.ed-pricing__strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.ed-pricing__strip::-webkit-scrollbar { height: 4px; }
.ed-pricing__strip::-webkit-scrollbar-track { background: #E8E4DC; }
.ed-pricing__strip::-webkit-scrollbar-thumb { background: #2D5016; }
.ed-price-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  padding: 32px 24px;
  border-left: 3px solid #62B247;
  background: #FAFAF5;
  margin-right: 1px;
  transition: background .2s;
  position: relative;
}
.ed-price-card:hover { background: #F0EDE5; }
.ed-price-card__credits {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: #1C1C1C;
  margin-bottom: 4px;
}
.ed-price-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 16px;
}
.ed-price-card__price {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: #1C1C1C;
  margin-bottom: 16px;
  line-height: 1;
}
.ed-price-card__price sup {
  font-size: 18px;
  vertical-align: super;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
}
.ed-price-card__buy {
  display: block;
  text-align: center;
  padding: 10px 0;
  background: #2D5016;
  color: #FAFAF5;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background .2s;
}
.ed-price-card__buy:hover { background: #62B247; color: #fff; }
.ed-price-card__perks {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.ed-price-card__perks .icon-check { fill: #62B247; margin-right: 5px; }

/* ===== INTEGRATIONS ===== */
.ed-integrations h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 12px;
}
.ed-integrations h2 em { font-style: italic; }
.ed-integrations__sub {
  text-align: center;
  color: #4A4A4A;
  margin-bottom: 40px;
}
.ed-integrations__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #D4CFC4;
  border-bottom: 1px solid #D4CFC4;
}
.ed-integration-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid #D4CFC4;
}
.ed-integration-logo:last-child { border-right: none; }
.ed-integration-logo img {
  max-width: 120px;
  max-height: 45px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter .3s, opacity .3s;
}
.ed-integration-logo:hover img { filter: grayscale(0%); opacity: 1; }

/* ===== BUSINESS CASE / STATS ===== */
.ed-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ed-stats__content { padding-right: 20px; }
.ed-stats__kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #62B247;
  margin-bottom: 12px;
  display: block;
}
.ed-stats__content h2 { font-size: 38px; margin-bottom: 24px; }
.ed-stats__content p { margin-bottom: 18px; color: #3A3A3A; }
.ed-stats__content p a { color: #2D5016; font-weight: 500; }
.ed-stats__sidebar {
  border-left: 3px solid #2D5016;
  padding-left: 32px;
}
.ed-stats__sidebar h3 {
  font-size: 18px;
  margin-bottom: 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ed-stat {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #D4CFC4;
}
.ed-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ed-stat__number {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1;
  color: #2D5016;
  margin-bottom: 6px;
}
.ed-stat__caption {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.ed-stat__caption a { color: #2D5016; }

/* ===== WHAT IS AN EMAIL VERIFIER ===== */
.ed-longform { max-width: 760px; margin: 0 auto; }
.ed-longform h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 32px;
}
.ed-longform p {
  margin-bottom: 20px;
  color: #3A3A3A;
  font-size: 17px;
  line-height: 1.8;
}
.ed-longform p a { color: #2D5016; font-weight: 500; }
.ed-longform__date {
  text-align: center;
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 24px;
}

/* ===== LEARN SECTION ===== */
.ed-learn h2 { font-size: 40px; text-align: center; margin-bottom: 12px; }
.ed-learn__sub {
  text-align: center;
  color: #4A4A4A;
  max-width: 640px;
  margin: 0 auto 40px;
}
.ed-learn .ed-tab-panel h3 { font-size: 28px; margin-bottom: 20px; }
.ed-learn .ed-tab-panel p { color: #3A3A3A; margin-bottom: 18px; line-height: 1.75; }
.ed-learn .ed-tab-panel p a { color: #2D5016; font-weight: 500; }

/* ===== FAQ ===== */
.ed-faq h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 12px;
}
.ed-faq__sub {
  text-align: center;
  color: #4A4A4A;
  max-width: 640px;
  margin: 0 auto 48px;
}
.ed-faq__list { max-width: 820px; margin: 0 auto; }
.ed-faq-item {
  border-bottom: 1px solid #D4CFC4;
}
.ed-faq-item:first-child { border-top: 1px solid #D4CFC4; }
.ed-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: #1C1C1C;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.ed-faq-q:hover { color: #2D5016; }
.ed-faq-q::after {
  content: '+';
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #888;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .3s;
}
.ed-faq-item.open .ed-faq-q::after {
  content: '\2013';
}
.ed-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 0 0 0;
}
.ed-faq-item.open .ed-faq-a {
  max-height: 800px;
  padding: 0 0 22px 0;
}
.ed-faq-a p {
  color: #4A4A4A;
  line-height: 1.7;
  font-size: 16px;
}
.ed-faq-a p a { color: #2D5016; font-weight: 500; }

/* ===== BREADCRUMB ===== */
.ed-breadcrumb {
  display: inline-flex;
  align-items: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.ed-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color .2s;
}
.ed-breadcrumb a:hover { color: #2D5016; }
.ed-breadcrumb a::after {
  content: '>';
  margin: 0 8px;
  color: #888;
}
.ed-breadcrumb span { color: #1C1C1C; }

/* ===== PAGE HEADER ===== */
.ed-page-header {
  background: #F0EDE5;
  padding: 60px 0;
  border-bottom: 1px solid #D4CFC4;
}
.ed-page-header h1 {
  font-size: 42px;
  max-width: 700px;
}
.ed-page-header__kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #62B247;
  margin-bottom: 12px;
  display: block;
}
.ed-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}
.ed-page-header__meta {
  font-size: 14px;
  font-style: italic;
  color: #888;
  margin-top: 12px;
}

/* ===== BLOG GRID ===== */
.ed-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.ed-blog-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ed-blog-card {
  border-bottom: 1px solid #D4CFC4;
  padding-bottom: 24px;
}
.ed-blog-card__img { margin-bottom: 16px; }
.ed-blog-card__img img { width: 100%; height: auto; }
.ed-blog-card__category {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #62B247;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}
.ed-blog-card__category:hover { color: #2D5016; }
.ed-blog-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ed-blog-card__title a {
  color: #1C1C1C;
  text-decoration: none;
  transition: color .2s;
}
.ed-blog-card__title a:hover { color: #2D5016; }
.ed-blog-card__meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 12px;
}
.ed-blog-card__excerpt {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
}

/* ===== SIDEBAR ===== */
.ed-sidebar {
  border-left: 3px solid #2D5016;
  padding-left: 24px;
}
.ed-sidebar h5 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

/* ===== SIDEBAR RECENT POSTS ===== */
.ed-sidebar__post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #D4CFC4;
}
.ed-sidebar__post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ed-sidebar__post a:first-child {
  flex: 0 0 72px;
}
.ed-sidebar__post img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}
.ed-sidebar__post a {
  font-size: 15px;
  font-weight: 600;
  color: #1C1C1C;
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s;
}
.ed-sidebar__post a:hover { color: #2D5016; }

/* ===== SIDEBAR WIDGETS ===== */
.ed-sidebar__widget {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D4CFC4;
}
.ed-sidebar__widget:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ed-sidebar__widget h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 12px;
}
.ed-sidebar__widget p {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 16px;
}

/* ===== BLOG ARTICLE ===== */
.ed-blog-article p {
  font-size: 17px;
  color: #3A3A3A;
  line-height: 1.8;
  margin-bottom: 20px;
}
.ed-blog-article h2 { font-size: 30px; margin: 40px 0 16px; }
.ed-blog-article h3 { font-size: 24px; margin: 32px 0 14px; }
.ed-blog-article ul, .ed-blog-article ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.ed-blog-article ol { list-style: decimal; }
.ed-blog-article li {
  font-size: 16px;
  color: #3A3A3A;
  margin-bottom: 8px;
  line-height: 1.7;
}
.ed-blog-article strong { font-weight: 600; color: #1C1C1C; }
.ed-blog-article img { border-radius: 0; margin-bottom: 28px; }
.ed-blog-article__callout {
  background: #F0EDE5;
  padding: 24px 28px;
  border-left: 3px solid #2D5016;
  margin: 24px 0;
}
.ed-blog-article__callout p:last-child { margin-bottom: 0; }

/* ===== LEGAL ===== */
.ed-legal p {
  font-size: 17px;
  color: #3A3A3A;
  line-height: 1.8;
  margin-bottom: 16px;
}
.ed-legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.ed-legal li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #3A3A3A;
  line-height: 1.7;
}
.ed-legal a { color: #2D5016; text-decoration: underline; }
.ed-legal .text-muted { color: #888; }

/* ===== BLOG SHARE ===== */
.ed-blog-share {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.ed-blog-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: filter .2s;
}
.ed-blog-share a:hover { filter: brightness(1.15); color: #fff; }
.ed-blog-share__facebook { background: #3b5998; }
.ed-blog-share__twitter { background: #1da1f2; }
.ed-blog-share__pinterest { background: #bd081c; }
.ed-blog-share__linkedin { background: #0077b5; }

/* ===== FOOTER ===== */
.ed-footer {
  background: #1C1C1C;
  padding: 60px 0 0;
  color: rgba(255,255,255,.7);
}
.ed-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.ed-footer__brand p {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.ed-footer h6 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 16px;
}
.ed-footer ul { list-style: none; padding: 0; }
.ed-footer ul li { margin-bottom: 8px; }
.ed-footer ul a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.ed-footer ul a:hover { color: #62B247; }
.ed-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 12px;
}
.ed-footer__bottom p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
}
.ed-footer__bottom a {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  margin-left: 24px;
  transition: color .2s;
}
.ed-footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ===== SOCIAL SHARE BAR ===== */
.ed-share-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.ed-share-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: filter .2s;
}
.ed-share-bar a:hover { filter: brightness(1.2); color: #fff; }
.ed-share-bar__linkedin { background: #0A66C2; }
.ed-share-bar__twitter { background: #000; }
.ed-share-bar__facebook { background: #1877F2; }

/* ===== TABLE OF CONTENTS ===== */
.ed-toc {
  background: #F0EDE5;
  padding: 24px 28px;
  margin: 0 0 32px;
  border-left: 3px solid #2D5016;
}
.ed-toc__title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1C1C1C;
  margin-bottom: 12px;
}
.ed-toc ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}
.ed-toc li {
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.5;
  color: #3A3A3A;
}
.ed-toc a {
  color: #2D5016;
  text-decoration: none;
  font-weight: 500;
}
.ed-toc a:hover {
  color: #62B247;
  text-decoration: underline;
}

/* ===== TL;DR ===== */
.ed-tldr {
  background: #F0EDE5;
  padding: 20px 28px;
  border-left: 3px solid #62B247;
  margin: 0 0 40px;
}
.ed-tldr__label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #62B247;
  margin-bottom: 8px;
}
.ed-tldr p {
  font-size: 16px;
  color: #3A3A3A;
  line-height: 1.7;
  margin: 0;
}

/* ===== AUTHOR BIO ===== */
.ed-author-bio {
  padding: 24px 28px;
  background: #F0EDE5;
  border-left: 3px solid #2D5016;
  margin: 48px 0 0;
}
.ed-author-bio__label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #62B247;
  margin-bottom: 4px;
}
.ed-author-bio__name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.ed-author-bio__name a {
  color: #1C1C1C;
  text-decoration: none;
}
.ed-author-bio__name a:hover {
  color: #2D5016;
}
.ed-author-bio p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== RENDER PERFORMANCE ===== */
.ed-boost, .ed-inbox, .ed-features, .ed-pricing, .ed-integrations,
.ed-longform, .ed-learn, .ed-faq, .ed-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ===== RESPONSIVE ===== */

/* 1024px and below */
@media (max-width: 1024px) {
  .ed-hero h1 { font-size: 44px; }
  .ed-hero__grid { gap: 40px; }
  .ed-stats__grid { gap: 40px; }
  .ed-stat__number { font-size: 44px; }
  .ed-price-card { flex: 0 0 180px; padding: 28px 20px; }
  .ed-integration-logo img { max-width: 100px; }
}

/* 768px and below (tablets) */
@media (max-width: 768px) {
  .ed-navbar__links { display: none; }
  .ed-hamburger { display: flex; }
  .ed-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FAFAF5;
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #D4CFC4;
    overflow-y: auto;
  }
  .ed-mobile-menu.open { display: flex; }
  .ed-mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: #1C1C1C;
    text-decoration: none;
    border-bottom: 1px solid #E8E4DC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .ed-mobile-menu a:last-child { border-bottom: none; }
  .ed-mobile-menu a.active { color: #62B247; }
  .ed-mobile-menu a.ed-navbar__cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }

  .ed-hero { padding: 80px 0 60px; }
  .ed-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-hero h1 { font-size: 40px; }
  .ed-hero__img { order: -1; max-width: 400px; margin: 0 auto; }

  .ed-boost__grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-boost__img { order: -1; max-width: 480px; margin: 0 auto; }

  .ed-inbox__grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-inbox__img { text-align: center; max-width: 350px; margin: 0 auto; }

  .ed-feature-grid { grid-template-columns: 1fr; }
  .ed-process-table td:first-child { white-space: normal; }
  .ed-process-table th, .ed-process-table td { padding: 10px 10px; font-size: 14px; }

  .ed-stats__grid { grid-template-columns: 1fr; gap: 48px; }
  .ed-stats__sidebar { border-left: none; padding-left: 0; border-top: 3px solid #2D5016; padding-top: 32px; }

  .ed-integrations__strip { flex-wrap: wrap; }
  .ed-integration-logo { flex: 0 0 33.333%; border-bottom: 1px solid #D4CFC4; }
  .ed-integration-logo:nth-child(3) { border-right: none; }
  .ed-integration-logo:nth-child(4),
  .ed-integration-logo:nth-child(5),
  .ed-integration-logo:nth-child(6) { border-bottom: none; }

  .ed-blog-grid { grid-template-columns: 1fr; }
  .ed-blog-posts { grid-template-columns: 1fr; }
  .ed-sidebar { border-left: none; padding-left: 0; border-top: 3px solid #2D5016; padding-top: 24px; }

  .ed-footer__grid { grid-template-columns: 1fr 1fr; }

  .ed-section { padding: 60px 0; }
  .ed-price-card { flex: 0 0 170px; }

  .ed-share-bar { display: none !important; }
}

/* 375px and below (mobile) */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ed-hero h1 { font-size: 32px; }
  .ed-hero__desc { font-size: 17px; }
  .ed-boost h2, .ed-inbox h2, .ed-features h2, .ed-pricing h2,
  .ed-integrations h2, .ed-stats__content h2, .ed-longform h2,
  .ed-faq h2, .ed-learn h2 { font-size: 30px; }
  .ed-tab-btn { padding: 12px 18px; font-size: 16px; }
  .ed-stat__number { font-size: 38px; }
  .ed-hero__actions { flex-direction: column; align-items: flex-start; }
  .ed-footer__grid { grid-template-columns: 1fr; }
  .ed-footer__bottom { flex-direction: column; align-items: flex-start; }
  .ed-integration-logo { flex: 0 0 50%; }
  .ed-integration-logo:nth-child(3) { border-right: 1px solid #D4CFC4; }
  .ed-integration-logo:nth-child(2),
  .ed-integration-logo:nth-child(4),
  .ed-integration-logo:nth-child(6) { border-right: none; }
  .ed-integration-logo:nth-child(4),
  .ed-integration-logo:nth-child(3) { border-bottom: 1px solid #D4CFC4; }
  .ed-integration-logo:nth-child(5),
  .ed-integration-logo:nth-child(6) { border-bottom: none; }
  .ed-price-card { flex: 0 0 160px; }
  .ed-pricing__strip { gap: 0; }
  .ed-page-header h1 { font-size: 28px; }
  .ed-blog-card__title { font-size: 19px; }
  .ed-faq-q { font-size: 17px; }
}
