:root {
  --navy: #074b88;
  --navy-2: #063a6b;

  --blue: #234e6c;
  --blue-soft: #dff3ff;

  --orange: #fca918;
  --orange-soft: #fff3e0;

  --ink: #14233d;
  --muted: #6d7890;

  --line: #e6eaf0;

  --surface: #ffffff;
  --surface-2: #f7f9fc;

  --success: #198754;

  --shadow:
    0 20px 60px rgba(13, 35, 72, 0.09);

  --radius: 20px;

  --container: 1200px;
}


/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  color: var(--ink);

  background: #fff;

  font-family: 'Poppins', sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}


button,
input {
  font: inherit;
}


button {
  cursor: pointer;
}


.container {
  width:
    min(var(--container),
      calc(100% - 40px));

  margin-inline: auto;
}


/* =========================================
   BUTTONS
   (buttons on this page use the site-wide
   .primary-btn / .secondary-btn / .btn-light
   classes from index.css, so every button
   looks the same as the rest of the site)
========================================= */


/* =========================================
   EYEBROW (used by section headings)
========================================= */

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--muted);

  font-size: 13px;

  letter-spacing: 0.16em;
}


.eyebrow.light {
  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {
  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);

  background: #fff;
}


.trust-inner {
  min-height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 22px;

  color: var(--muted);

  font-size: 13px;

}


.trust-line {
  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: var(--orange);
}


/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
  padding: 80px 0 100px;

  background: #fff;
}


.section-heading {
  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 35px;
}


.section-heading h2,
.comparison-header h3,
.price-faq h2 {
  margin: 8px 0 0;

  color: var(--navy);

  font-size:
    clamp(32px, 4vw, 48px);

  line-height: 1.08;

  letter-spacing: -0.045em;
}


.section-heading>p {
  max-width: 440px;

  margin: 0;

  color: var(--muted);

  font-size: 16px;
}


/* =========================================
   MODULE TABS
========================================= */

.module-tabs {
  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  border:
    1px solid var(--line);

  border-radius: 14px;

  padding: 5px;

  background: var(--surface-2);

  margin-bottom: 34px;
}


.module-tab {
  min-height: 48px;

  border: 0;

  border-radius: 10px;

  background: transparent;

  color: var(--muted);

  font-size: 14px;

  padding: 8px 10px;

  transition: 0.2s ease;
}


.module-tab:hover {
  color: var(--navy);
}


.module-tab.active {
  background: #fff;

  color: var(--navy);

  box-shadow:
    0 5px 18px rgba(13, 35, 72, 0.08);
}


/* =========================================
   MODULE INTRO
========================================= */

.module-intro {
  display: grid;

  grid-template-columns:
    1fr auto;

  align-items: end;

  gap: 30px;

  margin-bottom: 20px;
}


.module-intro h3 {
  margin: 0 0 4px;

  font-size: 25px;

  color: var(--navy);

  letter-spacing: -0.025em;
}


.module-intro p {
  margin: 0;

  color: var(--muted);

  font-size: 15px;
}


.module-badge {
  display: inline-flex;

  padding: 8px 12px;

  border-radius: 100px;

  background: var(--orange-soft);

  color: #9a5b0a;

  font-size: 13px;

}


/* =========================================
   PRICING CARDS
========================================= */

.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;

  align-items: stretch;
}


.pricing-grid.two-plans {
  grid-template-columns:
    repeat(2,
      minmax(280px, 430px));

  justify-content: center;
}


.plan-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 405px;

  border:
    1px solid var(--line);

  border-radius: 18px;

  background: #fff;

  padding: 28px;

  box-shadow:
    0 8px 30px rgba(13, 35, 72, 0.035);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


.plan-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow);

  border-color: #d9e2f2;
}


.plan-card.featured {
  border:
    1.5px solid var(--blue);

  box-shadow:
    0 18px 55px rgba(31, 94, 255, 0.12);
}


.plan-card.featured::before {
  content: "RECOMMENDED";

  position: absolute;

  top: -12px;

  right: 20px;

  padding: 5px 9px;

  border-radius: 6px;

  background: var(--blue);

  color: #fff;

  font-size: 10px;

  letter-spacing: 0.12em;
}


.plan-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}


.plan-name {
  margin: 0;

  font-size: 20px;

  color: var(--navy);

  letter-spacing: -0.025em;
}


.plan-chip {
  font-size: 12px;

  padding: 5px 8px;

  border-radius: 6px;

  background: var(--surface-2);

  color: var(--muted);
}


.plan-price {
  margin: 27px 0 5px;

  display: flex;

  align-items: baseline;

  gap: 5px;
}


.price-amount {
  color: var(--navy);

  font-size: 42px;

  line-height: 1;

  letter-spacing: -0.05em;
}


.price-period {
  color: #7c8799;

  font-size: 12px;

}


.plan-note {
  color: #8792a4;

  min-height: 20px;

  font-size: 11px;
}


.plan-description {
  min-height: 54px;

  margin: 24px 0 20px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.65;
}


.plan-quick {
  border-top:
    1px solid var(--line);

  padding-top: 18px;

  display: grid;

  gap: 9px;

  margin-bottom: 22px;
}


.quick-item {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color: var(--ink);

  font-size: 14px;
}


.quick-icon {
  flex:
    0 0 auto;

  width: 17px;

  height: 17px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--blue-soft);

  color: var(--blue);

  font-size: 11px;

}


.plan-card .primary-btn {
  width: 100%;

  justify-content: center;

  margin-top: auto;
}


/* =========================================
   COMPARISON TABLE
========================================= */

.comparison-wrap {
  margin-top: 65px;

  border:
    1px solid var(--line);

  border-radius: 20px;

  overflow: hidden;

  background: #fff;

  box-shadow:
    0 10px 35px rgba(13, 35, 72, 0.04);
}


.comparison-header {
  padding: 27px 28px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom:
    1px solid var(--line);
}


.comparison-header h3 {
  font-size: 28px;
}


.expand-all {
  border:
    1px solid var(--line);

  border-radius: 9px;

  padding: 9px 12px;

  background: #fff;

  color: var(--navy);

  font-size: 14px;

}


.comparison-table-wrap {
  overflow-x: auto;
}


.comparison-table {
  width: 100%;

  min-width: 720px;

  border-collapse: separate;

  border-spacing: 0;
}


.comparison-table th,
.comparison-table td {
  padding: 15px 18px;

  border-bottom:
    1px solid #edf0f4;

  text-align: center;

  font-size: 15px;
}


.comparison-table thead th {
  background: #fbfcfe;

  color: var(--navy);

  font-size: 20px;
}


.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;

  width: 48%;

  position: sticky;

  left: 0;

  z-index: 2;

  background: #fff;
}


.comparison-table thead th:first-child {
  z-index: 4;

  background: #fbfcfe;
}


.comparison-table .plan-col {
  width: 17.3%;
}


.comparison-table .category-row td {
  background: var(--surface-2);

  color: var(--navy);

  letter-spacing: 0.02em;

  text-transform: uppercase;

  font-size: 12px;
}


.comparison-table .category-row td:first-child {
  background: var(--surface-2);
}


.feature-name {
  color: var(--ink);

  font-size: 16px;
}


.feature-note {
  display: block;

  color: #8a94a6;

  font-size: 12px;

  margin-top: 2px;
}


.included {
  color: var(--success);

  font-size: 16px;
}


.not-included {
  color: #aeb6c2;

  font-size: 16px;
}


.custom {
  color: var(--blue);

  font-size: 13px;
}


.limit {
  color: #46546a;

}


.category-toggle {
  width: 100%;

  display: flex;

  justify-content: space-between;

  align-items: center;

  border: 0;

  background: transparent;

  color: inherit;

  padding: 0;

  text-align: left;

  font-size: inherit;

}


.category-toggle span {
  font-size: 16px;
}


.comparison-table tr.feature-row.hidden {
  display: none;
}


/* =========================================
   DECISION CTA
========================================= */

.decision-section {
  padding: 0 0 100px;
}


.decision-card {
  position: relative;

  overflow: hidden;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  background: var(--navy);

  border-radius: 24px;

  padding: 55px 60px;

  color: #fff;
}


.decision-card::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  right: -60px;

  top: -110px;
}


.decision-card h2 {
  max-width: 700px;

  margin: 8px 0 10px;

  font-size:
    clamp(28px, 4vw, 44px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  position: relative;

  z-index: 1;
}


.decision-card p {
  max-width: 650px;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.67);

  font-size: 16px;

  position: relative;

  z-index: 1;
}


.decision-card .btn-light {
  position: relative;

  z-index: 2;

  flex: 0 0 auto;

  gap: 8px;
}


/* =========================================
   FAQ
========================================= */

.price-faq {
  padding: 0 0 100px;
}


.faq-grid {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 90px;
}


.price-faq h2 {
  font-size: 42px;
}


.faq-lead {
  color: var(--muted);

  max-width: 330px;

  font-size: 15px;
}


.faq-list details {
  border-top:
    1px solid var(--line);

  padding: 20px 0;
}


.faq-list details:last-child {
  border-bottom:
    1px solid var(--line);
}


.faq-list summary {
  cursor: pointer;

  list-style: none;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  color: var(--navy);

  font-size: 16px;

}


.faq-list summary::-webkit-details-marker {
  display: none;
}


.faq-list summary::after {
  content: "+";

  color: var(--orange);

  font-size: 20px;

  line-height: 1;
}


.faq-list details[open] summary::after {
  content: "−";
}


.faq-list p {
  margin:
    12px 35px 0 0;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .module-tabs {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 820px) {

  .section-heading {
    display: block;
  }


  .section-heading>p {
    margin-top: 18px;
  }


  .pricing-grid,
  .pricing-grid.two-plans {
    grid-template-columns: 1fr;
  }


  .plan-card {
    min-height: 0;
  }


  /* position:sticky on table cells inside an overflow-x:auto
     wrapper is unreliable on touch devices: instead of the
     whole table panning as one block, each row ends up with
     its own independent scroll offset. Drop the sticky first
     column here so the table scrolls as a single unit. */
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: static;
  }


  .decision-card {
    display: block;

    padding: 40px;
  }


  .decision-card .btn-light {
    margin-top: 25px;
  }


  .faq-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }


}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 560px) {

  .container {
    width:
      min(var(--container),
        calc(100% - 28px));
  }




  .trust-inner {
    flex-wrap: wrap;

    padding: 15px 0;

    gap: 8px 12px;

    font-size: 13px;
  }


  .trust-line {
    display: none;
  }


  .pricing-section {
    padding-top: 70px;
  }


  .module-tabs {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .module-tab {
    min-height: 43px;

    font-size: 13px;
  }


  .module-intro {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .comparison-header {
    padding: 22px 17px;
  }


  .comparison-header h3 {
    font-size: 24px;
  }


  .comparison-table {
    min-width: 680px;
  }


  .comparison-table th,
  .comparison-table td {
    padding: 13px 12px;
  }


  .decision-card {
    padding: 34px 24px;

    border-radius: 18px;
  }


  .price-faq h2 {
    font-size: 34px;
  }

}