/* --------------------------------
   CHROME EXTENSION LANDING PAGE
   /chrome-extension.html
-------------------------------- */

.ce-page {
  color: #4A4545;
}
.ce-page h1, .ce-page h2, .ce-page h3 {
  font-family: inherit;
}
.ce-page code {
  background: #eef3fa;
  color: #3b5f8f;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.85em;
}
.ce-p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4545;
  margin-bottom: 18px;
}
.ce-p--small {
  font-size: 0.875rem;
  color: #6b7080;
}
.ce-h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3345;
  margin: 24px 0 10px;
}
.ce-h3 i {
  color: #457fca;
  margin-right: 8px;
}

/* --- Chrome extension button (shared look with the software page) --- */
.btn-chrome-ext {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #202124;
  text-decoration: none;
  padding: 12px 28px 12px 16px;
  border-radius: 50px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #4285F4 0%, #34A853 34%, #FBBC05 67%, #EA4335 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  line-height: 1.15;
  max-width: 100%;
}
.btn-chrome-ext:hover, .btn-chrome-ext:focus {
  color: #202124;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(66, 133, 244, 0.32);
}
.btn-chrome-ext__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #f1f5fb;
  color: #4285F4;
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-chrome-ext__text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.btn-chrome-ext__text small {
  display: block;
  font-size: 0.7rem;
  color: #5f6368;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.btn-chrome-ext--sm {
  padding: 8px 22px 8px 10px;
  gap: 10px;
}
.btn-chrome-ext--sm .btn-chrome-ext__icon {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  font-size: 1.35rem;
}
.btn-chrome-ext--sm .btn-chrome-ext__text strong {
  font-size: 0.95rem;
}
.btn-chrome-ext--lg {
  padding: 16px 36px 16px 18px;
}
.btn-chrome-ext--lg .btn-chrome-ext__icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  font-size: 2rem;
}
.btn-chrome-ext--lg .btn-chrome-ext__text strong {
  font-size: 1.25rem;
}

/* --- Hero --- */
.ce-hero {
  padding: 40px 0 55px;
  background: #F3F9FF;
  background-image: radial-gradient(circle at 15% 20%, rgba(69, 127, 202, 0.10) 0, rgba(69, 127, 202, 0) 45%),
                    radial-gradient(circle at 90% 80%, rgba(255, 87, 130, 0.10) 0, rgba(255, 87, 130, 0) 40%);
}
.ce-hero__text {
  padding-top: 20px;
}
.ce-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #457fca;
  background: #fff;
  border: 1px solid #d9e6f7;
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.ce-eyebrow i {
  margin-right: 5px;
}
.ce-h1 {
  font-size: 2.15rem;
  line-height: 1.25;
  font-weight: 700;
  color: #2c3345;
  margin: 0 0 18px;
}
.ce-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5b6172;
  margin-bottom: 26px;
}
.ce-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.ce-link-more {
  color: #457fca;
  font-weight: 600;
  font-size: 0.95rem;
}
.ce-link-more:hover {
  color: #FF5782;
  text-decoration: none;
}
.ce-trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.85rem;
  color: #5b6172;
}
.ce-trust li i {
  color: #34A853;
  margin-right: 5px;
}
.ce-hero__shot {
  margin: 20px 0 0;
}
.ce-hero__shot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(69, 127, 202, 0.22);
  border: 1px solid #e3ecf7;
}
.ce-hero__shot figcaption {
  font-size: 0.8rem;
  color: #9599A7;
  text-align: center;
  margin-top: 12px;
}

/* --- Sections --- */
.ce-section {
  padding: 65px 0;
}
.ce-section--alt {
  background: #F3F9FF;
}
.ce-section--tight {
  padding: 40px 0 10px;
}
.ce-page .c-headline {
  margin-bottom: 45px;
}
.ce-page .c-headline h2 {
  font-size: 1.85rem;
  text-transform: none;
  color: #2c3345;
}

/* --- Quick answer --- */
.ce-quick {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-left: 5px solid #FF5782;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.ce-quick__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9599A7;
  margin-bottom: 10px;
}
.ce-quick__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.ce-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  margin: 0;
}
.ce-facts div {
  background: #F3F9FF;
  border-radius: 6px;
  padding: 10px 14px;
}
.ce-facts dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9599A7;
  font-weight: 600;
}
.ce-facts dd {
  margin: 3px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3345;
}
.ce-toc {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.ce-toc__label {
  color: #9599A7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-right: 6px;
}
.ce-toc a {
  background: #fff;
  border: 1px solid #d9e6f7;
  border-radius: 20px;
  padding: 5px 12px;
  color: #457fca;
  font-weight: 600;
}
.ce-toc a:hover {
  background: #457fca;
  border-color: #457fca;
  color: #fff;
  text-decoration: none;
}

/* --- Feature cards --- */
.ce-cards {
  display: flex;
  flex-wrap: wrap;
}
.ce-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.ce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.ce-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #457fca 0%, #5691c8 100%);
  margin-bottom: 16px;
}
.ce-card__icon i {
  font-size: 1.3rem;
  color: #fff;
}
.ce-card__icon i.ce-rec {
  color: #FF5782;
  font-size: 1rem;
  box-shadow: 0 0 0 4px rgba(255, 87, 130, 0.35);
  border-radius: 50%;
}
.ce-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c3345;
  margin: 0 0 10px;
}
.ce-card p {
  font-size: 0.875rem;
  color: #6b7080;
  line-height: 1.7;
  margin: 0;
}

/* --- Sites --- */
.ce-sites {
  list-style: none;
  padding: 0;
  margin: 10px 0 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ce-sites li a, .ce-sites li span {
  display: block;
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2c3345;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
.ce-sites li a:hover {
  border-color: #457fca;
  color: #457fca;
  text-decoration: none;
}
.ce-sites li i {
  color: #34A853;
  margin-right: 6px;
}
.ce-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #eef5ff;
  border-left: 4px solid #457fca;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 10px 0;
}
.ce-note > i {
  color: #457fca;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* --- Steps --- */
.ce-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  counter-reset: ce-step;
}
.ce-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  padding: 28px 30px;
  margin-bottom: 22px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.ce-step:nth-child(even) {
  flex-direction: row-reverse;
}
.ce-step__body {
  flex: 1 1 50%;
  position: relative;
}
.ce-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(to right, #FF5782, #FD8596);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.ce-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3345;
  margin: 0 0 10px;
}
.ce-step p {
  font-size: 0.925rem;
  line-height: 1.75;
  color: #4A4545;
  margin-bottom: 16px;
}
.ce-step__shot {
  flex: 1 1 45%;
  margin: 0;
}
.ce-step__shots {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ce-step__shots .ce-step__shot {
  flex: 0 0 auto;
}
.ce-step__shot img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e3ecf7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.ce-step__shot figcaption {
  font-size: 0.78rem;
  color: #9599A7;
  text-align: center;
  margin-top: 8px;
}

/* --- Tables --- */
.ce-table-wrap {
  overflow-x: auto;
  margin: 10px 0 20px;
  -webkit-overflow-scrolling: touch;
}
.ce-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.9rem;
}
.ce-table th, .ce-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #edf2f9;
  vertical-align: top;
  text-align: left;
  line-height: 1.55;
}
.ce-table thead th {
  background: #457fca;
  color: #fff;
  font-weight: 600;
  border-bottom: 0;
  white-space: nowrap;
}
.ce-table thead th i {
  margin-right: 5px;
}
.ce-table tbody tr:last-child td, .ce-table tbody tr:last-child th {
  border-bottom: 0;
}
.ce-table tbody th[scope="row"] {
  font-weight: 600;
  color: #2c3345;
  background: #fafcff;
  width: 30%;
}
.ce-table small {
  color: #9599A7;
  font-size: 0.8rem;
}
.ce-table .ce-table__hl {
  background: #fff5f8;
}
.ce-table thead th.ce-table__hl {
  background: #FF5782;
}
.ce-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.ce-pill--dl {
  background: #e8f0fe;
  color: #1a56c4;
}
.ce-pill--rec {
  background: #ffe6ee;
  color: #d61f57;
}
.ce-pill--blocked {
  background: #ececec;
  color: #6b6b6b;
}

/* --- Lists --- */
.ce-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.ce-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  line-height: 1.65;
  font-size: 0.925rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.ce-list li:last-child {
  border-bottom: 0;
}
.ce-list li::before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 9px;
}
.ce-list--ok li::before {
  content: "\f00c";
  color: #34A853;
}
.ce-list--no li::before {
  content: "\f00d";
  color: #EA4335;
}

/* --- Compare CTA --- */
.ce-compare-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.ce-compare-cta .c-btn i {
  margin-right: 6px;
}

/* --- Pricing --- */
.ce-plan {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 30px 28px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
}
.ce-plan--pro {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #457fca, #5691c8, #FF5782);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 40px rgba(69, 127, 202, 0.15);
}
.ce-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF5782, #ff7e5f);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.ce-plan h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3345;
  margin: 0 0 6px;
}
.ce-plan__price {
  font-size: 2rem;
  font-weight: 700;
  color: #457fca;
  margin-bottom: 14px;
}
.ce-plan__price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #9599A7;
}
.ce-plan .c-btn i {
  margin-right: 6px;
}
.ce-plan__demo {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #457fca;
}

/* --- FAQ --- */
.ce-faq {
  margin-bottom: 20px;
}
.ce-faq__item {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
.ce-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ce-faq__item summary::-webkit-details-marker {
  display: none;
}
.ce-faq__item summary h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3345;
  margin: 0;
  line-height: 1.5;
}
.ce-faq__item summary i {
  color: #457fca;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}
.ce-faq__item[open] summary i {
  transform: rotate(180deg);
}
.ce-faq__item[open] summary {
  border-bottom: 1px solid #edf2f9;
}
.ce-faq__a {
  padding: 14px 20px 18px;
}
.ce-faq__a p {
  font-size: 0.925rem;
  line-height: 1.75;
  color: #4A4545;
  margin: 0;
}

/* --- Final CTA --- */
.ce-final {
  padding: 70px 0;
  background: linear-gradient(135deg, #457fca 0%, #5691c8 60%, #6aa3d8 100%);
  color: #fff;
}
.ce-final h2 {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.ce-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.ce-final__links {
  margin-top: 26px;
  font-size: 0.85rem;
}
.ce-final__links a {
  color: #fff;
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ce-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .ce-sites {
    grid-template-columns: repeat(3, 1fr);
  }
  .ce-step, .ce-step:nth-child(even) {
    flex-direction: column;
  }
  .ce-step__shot, .ce-step__shots {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ce-hero {
    padding: 25px 0 40px;
  }
  .ce-h1 {
    font-size: 1.65rem;
  }
  .ce-lead {
    font-size: 1rem;
  }
  .ce-section {
    padding: 45px 0;
  }
  .ce-page .c-headline h2 {
    font-size: 1.45rem;
  }
  .ce-facts {
    grid-template-columns: 1fr;
  }
  .ce-sites {
    grid-template-columns: repeat(2, 1fr);
  }
  .ce-quick {
    padding: 18px 18px;
  }
  .ce-step {
    padding: 22px 18px;
  }
  .btn-chrome-ext--lg {
    padding: 12px 24px 12px 14px;
  }
  .btn-chrome-ext--lg .btn-chrome-ext__text strong {
    font-size: 1.05rem;
  }
  .ce-final h2 {
    font-size: 1.5rem;
  }
}
