@charset "UTF-8";
/* ── PAGE-SPECIFIC STYLES ─────────────────────────────────────────── */
/* HERO */
.hero {
  padding: 80px 28px 80px;
  text-align: center;
}

.hero-stars {
  font-size: 1.8rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
}

@media (max-width: 768px) {
  .hero-stars {
    font-size: 1.25rem;
    letter-spacing: 0.11em;
  }
}
.hero h1 {
  margin: 20px auto 20px;
  max-width: 780px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto;
  color: var(--ink-2);
  line-height: 1.75;
}

.hero-actions {
  margin: 40px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 10px;
  }
}
.hero-proof {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-proof {
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .hero-proof {
    display: none;
  }
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 500;
}

.proof-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

.proof-divider {
  width: 1px;
  height: 16px;
  background: var(--border-med);
}

/* ── HERO "LIVE" TOAST ANIMATIONS ───────────────────────────────── */
.hero {
  position: relative;
}

.hero-toast {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  width: 270px;
  text-align: left;
  pointer-events: none;
  z-index: 0;
  scale: 0.85;
  opacity: 0;
  transform: translateY(30px);
}

.toast-1 {
  top: 34%;
  left: calc(50% + 330px);
  animation: toastPopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

.toast-2 {
  bottom: 20%;
  right: calc(50% + 330px);
  animation: toastPopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 2.8s forwards;
}

.toast-3 {
  top: 8%;
  right: calc(50% + 270px);
  animation: toastPopUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 4s forwards;
}

.toast-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.toast-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.toast-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.toast-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.toast-stars {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.toast-icon {
  margin-left: auto;
  color: #4285F4;
  font-size: 0.9rem;
  opacity: 0.8;
}

.toast-text {
  font-size: 0.78rem;
  color: var(--ink-2);
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}

@keyframes toastPopUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Hide on smaller screens to prevent overlapping the hero text */
@media (max-width: 1200px) {
  .hero-toast {
    display: none;
  }
}
/* PANEL SECTION WRAPPER */
.panel-section .panel-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 50px;
}

.panel-section .panel-head h2 {
  margin-bottom: 14px;
}

/* PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pillar-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.22s ease-in-out;
}

@media (max-width: 445px) {
  .pillar-card {
    padding: 20px 20px;
  }
}
.pillar-card:hover {
  border-color: var(--border-med);
  box-shadow: 0 6px 28px rgba(26, 26, 46, 0.09);
  transform: translateY(-2px);
}

.card-gold:hover {
  background: rgba(245, 200, 66, 0.0431372549);
}

.card-blue:hover {
  background: rgba(66, 133, 244, 0.0431372549);
}

.card-red:hover {
  background: rgba(231, 76, 60, 0.0431372549);
}

.card-green:hover {
  background: rgba(46, 204, 113, 0.0431372549);
}

.pillar-num {
  font-family: "DM Serif Display", serif;
  font-size: 5rem;
  color: rgba(26, 26, 46, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.icon-gold {
  background: var(--gold-pale);
  color: #c49a0a;
}

.icon-blue {
  background: var(--blue-dim);
  color: var(--blue);
}

.icon-red {
  background: var(--red-dim);
  color: var(--red);
}

.icon-green {
  background: var(--green-dim);
  color: #27ae60;
}

.pillar-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.pillar-card > p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.72;
}

.pillar-card ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--ink-2);
}

.pillar-card ul li i {
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

code.link-chip {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  color: #a07a00;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 1px 6px;
  border-radius: 5px;
}

@media (max-width: 430px) {
  .link-chip {
    display: block;
    margin-top: 4px;
  }
}
/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 1rem;
}

.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  border-top: 1.5px dashed var(--line-color);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1rem;
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.07);
  transition: all 0.22s;
}

.step:hover .step-dot {
  background: var(--gold-pale);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(245, 200, 66, 0.1);
  transform: scale(1.08);
}

.step h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  text-wrap: balance;
}

.step p {
  font-size: 0.81rem;
  color: var(--ink-3);
  line-height: 1.65;
  text-wrap: pretty;
}

@media (max-width: 1200px) {
  .steps {
    grid-template-columns: 1fr;
    row-gap: 36px;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 8px;
  }
  .steps::before {
    display: block;
    top: 26px;
    bottom: 26px;
    left: 33px;
    right: auto;
    border-top: none;
    border-left: 1.5px dashed var(--line-color);
  }
  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 16px;
         column-gap: 16px;
    text-align: left;
  }
  .step-dot {
    grid-column: 1;
    grid-row: 1/span 2;
    margin: 0;
    z-index: 2;
  }
  .step h4 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
    padding-top: 2px;
  }
  .step p {
    grid-column: 2;
    grid-row: 2;
  }
}
/* FILTER */
.filter-panel {
  background: #fff;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 60px 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.filter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(245, 200, 66, 0.06) 0%, transparent 55%);
  pointer-events: none;
  border-radius: var(--radius);
}

@media (max-width: 1200px) {
  .filter-panel {
    padding: 48px 40px;
    gap: 32px;
  }
  .fv-card-reveal {
    display: none !important;
  }
  .fv-card:hover .fv-card-content {
    padding-right: 20px !important;
  }
}
@media (max-width: 750px) {
  .filter-panel {
    padding: 40px 40px;
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .filter-text {
    max-width: 500px;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .filter-panel {
    padding: 36px 22px 22px;
  }
}
.filter-text h2 {
  margin-bottom: 16px;
}

.filter-text p {
  margin-bottom: 26px;
}

.filter-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* The Filter Card - Hover Interaction */
.fv-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.fv-card.negative {
  border-right: 3px solid var(--red);
}

.fv-card.positive {
  border-right: 3px solid var(--green);
}

.fv-card-content {
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  transition: padding-right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.fv-card-reveal {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.fv-card:hover .fv-card-content {
  padding-right: 80px;
}

.fv-card:hover .fv-card-reveal {
  right: 0;
}

.fv-card.negative .fv-card-reveal {
  background: var(--red-dim);
  border-left: 1px solid rgba(231, 76, 60, 0.2);
}

.fv-card.positive .fv-card-reveal {
  background: var(--green-dim);
  border-left: 1px solid rgba(46, 204, 113, 0.2);
}

.reveal-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy reveal */
  transition-delay: 0.1s; /* Wait slightly for the slide */
}

.fv-card.negative:hover .reveal-icon-circle {
  transform: scale(1);
  opacity: 1;
  background: var(--red);
}

.fv-card.positive:hover .reveal-icon-circle {
  transform: scale(1);
  opacity: 1;
  background: #27ae60;
}

.fv-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fv-icon.red {
  background: var(--red-dim);
  color: var(--red);
}

.fv-icon.grn {
  background: var(--green-dim);
  color: #27ae60;
}

.fv-card-body {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  font-family: "DM Sans", sans-serif;
}

.fv-stars-neg {
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: block;
}

.fv-stars-pos {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: block;
}

.fv-route {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 6px;
}

.route-private {
  background: var(--red-dim);
  color: #c0392b;
}

.route-google {
  background: var(--green-dim);
  color: #27ae60;
}

/* REPLY */
.reply-text h2 {
  margin-bottom: 16px;
}

.reply-text p {
  margin-bottom: 12px;
}

.reply-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto 50px auto;
}

.review-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card .reply-box {
  height: 100%;
}

@media (max-width: 1040px) {
  .reply-visual {
    grid-template-columns: 1fr; /* Switch to a single column */
    max-width: 520px; /* Keep the stacked cards a readable width */
  }
}
/* CALCULATOR */
.calc-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.1);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.calc-header {
  text-align: center;
  margin-bottom: 40px;
}

.calc-header h2 {
  margin-bottom: 12px;
}

.calc-header p {
  max-width: 440px;
  margin: 0 auto;
}

.calc-input-box {
  background: var(--mist);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 24px 28px;
  margin-bottom: 28px;
}

.calc-input-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calc-input-label > span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.calc-value-display {
  font-family: "DM Serif Display", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.calc-value-display small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-3);
  margin-left: 4px;
}

.slider-track {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: var(--mist-dark);
  margin-bottom: 24px;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), #f7d46a);
  pointer-events: none;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: -6px;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 0;
  border: none;
  box-shadow: none;
}

input[type=range]:focus {
  box-shadow: none;
  border-color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--card);
  border: 2.5px solid var(--gold);
  box-shadow: 0 2px 10px rgba(245, 200, 66, 0.3);
  -webkit-transition: transform 0.18s, box-shadow 0.18s;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-top: -27px;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.42);
}

input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--card);
  border: 2.5px solid var(--gold);
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: none;
}

input[type=range]::-moz-range-track {
  background: transparent;
  border: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 7px;
}

.slider-labels span {
  width: 36px;
  display: inline-block;
  text-align: center;
}

.slider-labels span:first-child {
  text-align: left;
}

.slider-labels span:last-child {
  text-align: right;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.ba-col {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 18px;
  text-align: center;
}

.ba-col.after {
  background: var(--gold-pale);
  border-color: var(--gold-border);
}

.ba-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 7px;
}

.ba-label.gold {
  color: #a07a00;
}

.ba-number {
  font-family: "DM Serif Display", serif;
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1;
}

.ba-sub {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 3px;
}

.ba-arrow {
  font-size: 1.25rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.result-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.result-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.1);
}

.rc-icon {
  font-size: 1.1rem;
  margin-bottom: 9px;
}

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

.rc-icon.green {
  color: #27ae60;
}

.rc-icon.blue {
  color: var(--blue);
}

.rc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.rc-number {
  font-family: "DM Serif Display", serif;
  font-size: 2.7rem;
  color: var(--ink);
  line-height: 1;
}

.rc-sub {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.4;
}

.rc-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--green-dim);
  color: #27ae60;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 8px;
}

@media (max-width: 810px) {
  .calc-results {
    grid-template-columns: 1fr 1fr;
  }
  .calc-results .result-card:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 490px) {
  .calc-input-box {
    margin-bottom: 16px;
  }
  .before-after {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  .ba-arrow {
    transform: rotate(90deg);
    margin: -4px 0;
  }
  .calc-results {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calc-results .result-card:last-child {
    grid-column: auto;
  }
}
@media (max-width: 450px) {
  .calc-input-label {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .calc-value-display {
    font-size: 2.8rem;
  }
  /* Hide the 50 and 150 labels so 5, 100, and 200+ space out perfectly */
  .slider-labels span:nth-child(2),
  .slider-labels span:nth-child(4) {
    display: none;
  }
}
.calc-accordion-wrapper {
  max-width: 820px;
  margin: 24px auto 0;
}

.calc-accordion {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.calc-accordion:hover {
  border-color: var(--gold-border);
  background: #fff;
}

.calc-accordion summary {
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "DM Sans", sans-serif;
}

.calc-accordion summary::-webkit-details-marker {
  display: none;
}

.calc-accordion summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--ink-3);
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-accordion[open] summary::after {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 20px 20px 20px;
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.calc-accordion[open] .accordion-content {
  border-top-color: var(--mist-dark);
  margin-top: 4px;
  padding-top: 16px;
  animation: fadeIn 0.4s ease;
}

.accordion-content p strong {
  color: var(--ink);
  font-weight: 700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  border-color: var(--border-med);
}

.price-card.featured {
  background: var(--ink-2);
  border-color: var(--ink);
  box-shadow: 0 8px 36px rgba(26, 26, 46, 0.22);
}

.price-card.featured:hover {
  box-shadow: 0 16px 50px rgba(26, 26, 46, 0.3);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.price-card.featured {
  scale: 1.025;
}

.price-card.featured h3 {
  color: #fff;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-bottom: 22px;
  min-height: 34px;
  line-height: 1.55;
}

.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.85);
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 22px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-3);
  padding: 0 2px 9px 0;
}

.price-number {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  color: var(--ink-3);
  padding-bottom: 9px;
}

.price-card.featured .price-currency, .price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.4);
}

.price-card.featured .price-number {
  color: #fff;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.price-card.featured .price-divider {
  background: rgba(255, 255, 255, 0.1);
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.price-features li i {
  font-size: 0.75rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.price-features li .fa-check {
  color: var(--gold);
}

.price-features li .fa-xmark {
  color: var(--ink-3);
}

.price-features li strong {
  color: var(--ink);
  font-weight: 600;
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.4);
}

.price-card.featured .price-features li .fa-check {
  color: var(--gold);
}

.price-card.featured .price-features li .fa-xmark {
  color: rgba(255, 255, 255, 0.4);
}

.price-card.featured .price-features li strong {
  color: #fff;
}

@media (max-width: 977px) {
  .pricing-grid {
    gap: 0;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .price-card {
    padding: 24px 24px;
  }
  .price-card h3 {
    font-size: 1.1rem;
  }
  .price-desc {
    font-size: 0.75rem;
    min-height: 38px;
  }
  .price-number {
    font-size: 2.8rem;
  }
  .price-features li {
    font-size: 0.8rem;
    white-space: nowrap;
    letter-spacing: -0.015em;
  }
  .price-card.featured {
    z-index: 10;
    position: relative;
    transform: scaleY(1.01) scaleX(1.01);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.2);
    border-radius: var(--radius);
  }
  .price-card:first-child,
  .price-card:last-child {
    z-index: 1;
    position: relative;
    background: #FCFBFA;
  }
  .price-card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  .price-card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
  }
  .price-card:hover {
    transform: none;
  }
  .price-card.featured:hover {
    transform: none !important;
  }
}
@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 440px;
    margin: 0 auto;
  }
  .price-card.featured {
    transform: none;
    scale: 1;
  }
  .price-card {
    padding: 28px 28px;
  }
  .price-card:first-child,
  .price-card:last-child {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
  }
  .price-card h3 {
    font-size: 1.4rem;
  }
  .price-desc {
    font-size: 0.95rem;
  }
  .price-features li {
    white-space: normal;
    font-size: 0.9rem;
    letter-spacing: 0em;
  }
}
/* FINAL CTA */
.final-cta {
  background: var(--ink);
  text-align: center;
  padding: 96px 28px;
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 18px;
  position: relative;
}

.final-cta h2 em {
  color: var(--gold);
  font-style: italic;
}

.final-cta .cta-sub {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.star-row {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  display: block;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 913px) {
  .pillars-grid {
    grid-template-columns: 1fr !important;
  }
  .reply-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 76px 20px 64px;
  }
  .calc-card {
    padding: 36px 22px 22px;
  }
  .calc-input-box {
    padding: 20px 16px;
  }
}
/* ── DISABLE HOVER EFFECTS ON TABLET & MOBILE (1024px and below) ── */
@media (max-width: 1024px) {
  .pillar-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--border) !important;
  }
  .card-gold:hover, .card-blue:hover, .card-red:hover, .card-green:hover {
    background: var(--mist) !important;
  }
  .step:hover .step-dot {
    background: var(--card) !important;
    border-color: var(--gold-border) !important;
    box-shadow: 0 2px 12px rgba(26, 26, 46, 0.07) !important;
    transform: none !important;
  }
  .result-card:hover {
    border-color: var(--border) !important;
    box-shadow: none !important;
  }
  .calc-accordion:hover {
    border-color: var(--border) !important;
    background: transparent !important;
  }
  input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1) !important;
    box-shadow: 0 2px 10px rgba(245, 200, 66, 0.3) !important;
  }
  input[type=range]::-moz-range-thumb:hover {
    transform: scale(1) !important;
    box-shadow: 0 2px 10px rgba(245, 200, 66, 0.3) !important;
  }
  .price-card:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06) !important;
    border-color: var(--border) !important;
  }
  .price-card.featured:hover {
    box-shadow: 0 8px 36px rgba(26, 26, 46, 0.22) !important;
    border-color: var(--ink) !important;
  }
}/*# sourceMappingURL=styles_index.css.map */