:root {
  --bg: #F8F7F5;

  --surface: #FFFFFF;
  --surface-soft: #FBFAF8;

  --blue: #8FAED1;
  --blue-light: #AFC6E0;
  --blue-soft: #D6E3F1;
  --blue-dark: #6F95BF;
  --blue-deep: #4F7DAE;

  --text: #3F3A36;
  --text-secondary: #6F685F;
  --text-muted: #8C847B;

  --line: #E8E3DC;

  --shadow-sm: 0 8px 20px rgba(63, 58, 54, 0.05);
  --shadow-md: 0 18px 45px rgba(63, 58, 54, 0.08);

  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;

  --page-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;

  background:
    radial-gradient(
      circle at top left,
      rgba(143,174,209,0.16),
      transparent 26%
    ),

    radial-gradient(
      circle at top right,
      rgba(214,227,241,0.75),
      transparent 30%
    ),

    radial-gradient(
      circle at 80% 55%,
      rgba(143,174,209,0.10),
      transparent 22%
    ),

    linear-gradient(
      180deg,
      #fcfbf9 0%,
      #f7f6f3 42%,
      #f2f5fa 100%
    );

  background-attachment: fixed;

  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

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

.pricing-shell {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
}

/* nav */
.pricing-header {
  padding: 26px 0 10px;
}

.pricing-nav {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pricing-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.pricing-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pricing-brand-name {
  font-size: 28px;
  font-weight: 600;
  color: var(--blue);
}

.pricing-nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.pricing-nav-links a,
.pricing-login {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.pricing-nav-links a.active {
  color: #8faed1;
  position: relative;
}

.pricing-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: #8faed1;
}

.pricing-nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pricing-nav-cta,
.btn-primary,
.btn-secondary,
.plan-btn,
.enterprise-btn,
.toggle-btn {
  transition: 0.2s ease;
}

.pricing-nav-cta {
  background: #93a5cb;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* hero */
.pricing-hero {
  padding: 42px 0 44px;
}

.pricing-eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #8faed1;
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #1f2740;
  max-width: 740px;
  font-family: 'Poppins', sans-serif;
}

.pricing-hero h1 span {
  display: block;
  color: #8FAED1;
}

.pricing-intro {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.pricing-toggle-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.toggle-btn {
  border: 1px solid rgba(232, 224, 216, 0.95);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn.active {
  background: #8faed1;
  color: #fff;
  border-color: #a7b7de;
}

.pricing-save-note {
  margin: 0;
  color: #8faed1;
  font-size: 17px;
  font-weight: 500;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
}

/* pricing cards */
.pricing-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.plan-card,
.enterprise-card {
  border-radius: 28px;
  padding: 34px 26px 26px;
  box-shadow: var(--shadow-sm);
}

.plan-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(232, 224, 216, 0.95);
}

.free-plan {
  background: rgba(255, 255, 255, 0.72);
}

.featured-plan {
  position: relative;
  border: 1.5px solid #8faed1;
  box-shadow: 0 20px 44px rgba(93, 126, 181, 0.12);
}

.pricing-card.featured-plan {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured-plan::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(143,174,209,0.18),
    transparent 70%
  );
  top: -140px;
  right: -140px;
  animation: featuredGlow 8s linear infinite;
  pointer-events: none;
}

@keyframes featuredGlow {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.06);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.pro-plan {
  background: rgba(255, 255, 255, 0.76);
}

.enterprise-card {
  background: linear-gradient(180deg, #c4cfe2 0%, #8faed1 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #8faed1;
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.green-icon {
  background: var(--green-soft);
  color: var(--green);
}

.blue-icon {
  background: rgba(109, 146, 215, 0.14);
  color: #8f9db5;
}

.gold-icon {
  background: var(--gold-soft);
  color: var(--gold);
}

.plan-card h2,
.enterprise-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.plan-subtitle,
.enterprise-subtitle {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.enterprise-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.plan-price {
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.pricing-card,
.addon-card,
.feature-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.pricing-card.revealed,
.addon-card.revealed,
.feature-card.revealed {
  opacity: 1;
  transform: translateY(0px);
}

.plan-price,
.enterprise-price {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.enterprise-price {
  margin-top: 8px;
  margin-bottom: 22px;
}

.booking-fee {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}

.green-fee {
  background: var(--green-soft);
  color: var(--green);
}

.blue-fee {
  background: rgba(109, 146, 215, 0.14);
  color: #8faed1;
}

.gold-fee {
  background: var(--gold-soft);
  color: #ae7e2b;
}

.plan-features,
.enterprise-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}

.plan-features li,
.enterprise-features li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.45;
}

.plan-features li::before,
.enterprise-features li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  line-height: 1.8;
}

.free-plan .plan-features li::before {
  color: var(--green);
}

.featured-plan .plan-features li::before {
  color: #8faed1;
}

.pro-plan .plan-features li::before {
  color: var(--gold);
}

.enterprise-features li::before {
  color: rgba(255, 255, 255, 0.9);
}

.plan-btn,
.enterprise-btn {
  display: block;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  margin-top: auto;
}

.outline-green {
  border: 1.5px solid var(--green);
  color: var(--green);
  background: transparent;
}

.solid-blue {
  background: #8faed1;
  color: #fff;
}

.outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.enterprise-btn {
  background: #fff;
  color: #8faed1;
}

.enterprise-spark {
  font-size: 24px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}

/* trust row */
.pricing-trust-row {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(232, 224, 216, 0.9);
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(232, 224, 216, 0.9);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(109, 146, 215, 0.12);
  color: #8faed1;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.trust-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.plan-trust-text {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #8c847b;
  line-height: 1.5;
}

.growth-trust {
  color: #4f7dae;
}

.enterprise-trust {
  color: rgba(255,255,255,0.85);
}

/* add-ons */
.addons-section {
  padding: 14px 0 68px;
}

.addons-heading {
  margin-bottom: 26px;
  max-width: 760px;
}

.addons-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #1f2740;
  font-family: Georgia, "Times New Roman", serif;
}

.addons-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.addon-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 224, 216, 0.92);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.featured-addon {
  border-color: rgba(109, 146, 215, 0.55);
}

.addon-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(118, 140, 181, 0.14);
  color: #8faed1;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.addon-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
}

.addon-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.addon-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.addon-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.addon-included {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.included-growth {
  background: #eef4fb;
  color: #4f7dae;
}

.included-pro {
  background: #f4f0ff;
  color: #6b4bb6;
}

.optional-addon {
  background: #f8f7f5;
  color: #8c847b;
  border: 1px solid #e8e3dc;
}

.pricing-card,
.addon-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.pricing-card:hover,
.addon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(63, 58, 54, 0.10);
}

.pricing-card:hover {
  border-color: #8faed1;
}

.addon-card:hover {
  border-color: #d6e3f1;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(143,174,209,0.08),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover .plan-price {
  transform: scale(1.04);
}

.plan-price {
  transition: transform 0.22s ease;
}

.plan-btn,
.enterprise-btn {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.plan-btn:hover,
.enterprise-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(143,174,209,0.28);
}

.plan-btn:active,
.enterprise-btn:active {
  transform: scale(0.98);
}

.secondary-plan-btn {
  background: #eef4fb;
  color: #4f7dae;
  border: 1px solid #d6e3f1;
}

.secondary-plan-btn:hover {
  background: #8faed1;
  color: white;
}

/* bottom cta */
.pricing-cta-section {
  padding: 0 0 72px;
}

.pricing-cta-box {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(232, 224, 216, 0.92);
  border-radius: 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.pricing-cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #1f2740;
  font-family: Georgia, "Times New Roman", serif;
}

.pricing-cta-copy p:last-child {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 700px;
}

.pricing-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.large-btn {
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
}

/* responsive */
@media (max-width: 1280px) {
  .pricing-grid,
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-layout,
  .pricing-cta-box {
    grid-template-columns: 1fr;
  }

  .enterprise-card {
    min-height: 100%;
  }

  .pricing-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .pricing-shell,
  .pricing-nav {
    width: min(calc(100% - 40px), var(--page-width));
  }

  .pricing-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .pricing-nav-links {
    width: 100%;
    order: 3;
    flex-wrap: wrap;
    gap: 18px;
  }

  .pricing-grid,
  .addons-grid,
  .pricing-trust-row {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(232, 224, 216, 0.9);
  }

  .pricing-hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 720px) {
  .pricing-toggle-row,
  .pricing-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle-btn,
  .plan-btn,
  .enterprise-btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .pricing-cta-box {
    padding: 26px;
  }
}

.pricing-footer {
  background-color: #F8F7F5;
  margin-top: 10px;
  padding: 46px 0 20px;
  border-top: 1px solid #E8E3DC;
}

.pricing-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 32px;
}

.pricing-footer-brand {
  max-width: 360px;
}

.pricing-footer-brand h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 600;
  color: #8FAED1;
}

.pricing-footer-brand p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6F685F;
}

.pricing-footer-links {
  display: flex;
  gap: 60px;
}

.pricing-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-footer .footer-column h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #3F3A36;
}

.pricing-footer .footer-column a {
  text-decoration: none;
  font-size: 14px;
  color: #6F685F;
  transition: 0.2s ease;
}

.pricing-footer .footer-column a:hover {
  color: #8FAED1;
}

.pricing-footer-bottom {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
  border-top: 1px solid #E8E3DC;
  padding-top: 18px;
  text-align: center;
}

.pricing-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #8C847B;
}

@media (max-width: 980px) {
  .pricing-footer-top,
  .pricing-footer-links {
    flex-direction: column;
    gap: 28px;
  }

  .pricing-footer-bottom {
    width: min(calc(100% - 40px), var(--page-width));
  }
}

.comparison-section {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
  padding: 110px 0;
}

.comparison-head {
  margin-bottom: 34px;
}

.comparison-eyebrow {
  color: #8faed1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.comparison-head h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 760px;
  margin: 0;
  color: #1f2740;
}

.comparison-head h2 span {
  color: #8faed1;
}

.comparison-subtext {
  margin-top: 18px;
  max-width: 560px;
  color: #6f685f;
  font-size: 17px;
  line-height: 1.6;
}

.comparison-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(63, 58, 54, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  background: rgba(255,255,255,0.86);
  border: 1px solid #e8e3dc;
  border-radius: 30px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 24px 26px;
  border-bottom: 1px solid #e8e3dc;
  font-size: 15px;
  color: #3f3a36;
}

.comparison-table th {
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  width: 34%;
  font-weight: 700;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  font-weight: 700;
}

.highlight-column {
  background: rgba(143,174,209,0.09);
  color: #4f7dae;
}

.comparison-table th.highlight-column {
  position: relative;
  border-left: 1.5px solid #8faed1;
  border-right: 1.5px solid #8faed1;
}

.comparison-table td.highlight-column {
  border-left: 1.5px solid #8faed1;
  border-right: 1.5px solid #8faed1;
}

.comparison-table tbody tr:hover {
  background: rgba(143,174,209,0.05);
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef4fb;
  color: #4f7dae;
  font-weight: 900;
}

.dash {
  color: #8c847b;
  font-weight: 700;
}

.comparison-note {
  margin: 22px auto 0;
  width: fit-content;
  background: rgba(255,255,255,0.7);
  border: 1px solid #e8e3dc;
  border-radius: 999px;
  padding: 13px 20px;
  color: #6f685f;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .comparison-section {
    width: min(calc(100% - 40px), var(--page-width));
  }
}