﻿/* =========================================================
   pKorix Website — Pricing
   Approved reference redesign
   Ownership: pricing.css only
   ========================================================= */

.pricing-section {
  --navy: #071b55;
  --navy-soft: #17366c;
  --cyan: #08bde2;
  --cyan-dark: #009fc4;
  --cyan-pale: #eafcff;
  --orange: #ff5d3b;
  --orange-soft: #fff0eb;
  --text: #213b67;
  --muted: #667b9c;
  --line: #d9eef4;
  --white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 34px 0 76px;
  background:
    linear-gradient(
      135deg,
      #fafdff 0%,
      #f3fdff 42%,
      #ddf8ff 100%
    );
}

/* Large curved cyan background shapes */
.pricing-section::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 72px solid rgba(24, 194, 230, 0.07);
  pointer-events: none;
}

.pricing-section::after {
  content: "";
  position: absolute;
  right: -350px;
  top: 180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 58px solid rgba(24, 194, 230, 0.055);
  pointer-events: none;
}

.pricing-container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   TOP AREA
   ========================================================= */

.pricing-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.pricing-heading {
  max-width: 730px;
}

.pricing-kicker {
  display: block;
  margin-bottom: 10px;
  color: #079fc9;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.pricing-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 4.4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.pricing-heading h2 span {
  display: block;
  color: var(--orange);
}

.pricing-heading > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* =========================================================
   RIGHT TOP
   ========================================================= */

.pricing-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 5px;
}

/* =========================================================
   BILLING TOGGLE
   ========================================================= */

.billing-toggle {
  display: flex;
  align-items: center;
  width: 390px;
  padding: 7px;
  border: 1px solid rgba(0, 180, 220, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 12px 30px rgba(0, 109, 147, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.billing-toggle button {
  flex: 1;
  min-height: 57px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.billing-toggle button small {
  display: block;
  margin-top: 3px;
  font-size: 0.65rem;
  font-weight: 700;
}

.billing-toggle button.active {
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #12cbe9 0%,
      #079fca 65%,
      #057db4 100%
    );
  box-shadow:
    0 10px 24px rgba(0, 163, 203, 0.26),
    inset 0 0 18px rgba(255, 255, 255, 0.16);
}

/* =========================================================
   BUILT AROUND YOU
   ========================================================= */

.pricing-handwritten {
  position: relative;
  margin-right: 24px;
  padding: 0 4px 10px;
  color: var(--navy);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-4deg);
}

.pricing-handwritten i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-5deg);
}

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

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 515px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(199, 232, 240, 0.94);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 44px rgba(19, 75, 106, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 189, 226, 0.5);
  box-shadow:
    0 25px 52px rgba(19, 75, 106, 0.1);
}

/* pKorix One */
.plan-card.plan-popular {
  border: 2px solid var(--orange);
  background:
    linear-gradient(
      180deg,
      rgba(255, 239, 233, 0.65) 0%,
      rgba(255, 255, 255, 0.98) 22%,
      #ffffff 100%
    );
  box-shadow:
    0 20px 50px rgba(255, 93, 59, 0.13),
    0 16px 42px rgba(19, 75, 106, 0.06);
}

.plan-card.plan-popular:hover {
  border-color: var(--orange);
  box-shadow:
    0 26px 58px rgba(255, 93, 59, 0.17),
    0 18px 45px rgba(19, 75, 106, 0.08);
}

/* =========================================================
   MOST POPULAR
   ========================================================= */

.popular-label {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #ff744e 0%,
      var(--orange) 100%
    );
  box-shadow:
    0 8px 22px rgba(255, 93, 59, 0.25);
  font-size: 0.8rem;
  font-weight: 850;
}

/* =========================================================
   PLAN ICONS
   ========================================================= */

.plan-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  border-radius: 16px;
  color: var(--cyan-dark);
  background:
    linear-gradient(
      145deg,
      #e1fbff 0%,
      #effdff 100%
    );
  font-size: 1.65rem;
  font-weight: 900;
}

.plan-icon.popular-icon {
  color: var(--orange);
  background:
    linear-gradient(
      145deg,
      #ffe4dc 0%,
      #fff1ed 100%
    );
}

/* =========================================================
   CARD TYPOGRAPHY
   ========================================================= */

.plan-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.68rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.plan-description {
  min-height: 45px;
  margin: 7px 0 18px;
  color: var(--text);
  font-size: 0.89rem;
  line-height: 1.42;
}

.plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 29px;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.42;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #00a9ca;
  background: #ddf9fd;
  font-size: 0.7rem;
  font-weight: 900;
}

.plan-popular li::before {
  color: var(--orange);
  background: #ffebe5;
}

/* =========================================================
   PRICE AREA
   ========================================================= */

.plan-bottom {
  position: relative;
  margin-top: auto;
  padding-top: 22px;
}

.plan-bottom::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: #dbeaf0;
}

.plan-price {
  min-height: 66px;
  margin-bottom: 10px;
}

.plan-price small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.plan-price strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.plan-price span {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* pKorix One price */
.one-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 4px;
  margin-top: 2px;
}

.one-price strong {
  color: var(--navy);
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  white-space: nowrap;
}

.one-price strong sup {
  position: relative;
  top: -0.55em;
  margin-left: 1px;
  color: var(--cyan);
  font-size: 0.5em;
}

.one-price > span {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.74rem;
  white-space: nowrap;
}

.billing-caption {
  margin-top: 5px;
  color: #00a9ca;
  font-size: 0.8rem;
  font-weight: 850;
}

/* old monthly reference must stay unused */
.monthly-reference {
  display: none !important;
}

/* =========================================================
   CARD BUTTONS
   ========================================================= */

.plan-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  padding: 11px 14px;
  border: 1.5px solid var(--cyan);
  border-radius: 11px;
  color: #00a8cc;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.plan-action b {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.plan-action:hover {
  color: #ffffff;
  background: var(--cyan-dark);
  box-shadow: 0 10px 22px rgba(0, 159, 196, 0.18);
  transform: translateY(-1px);
}

.plan-action:hover b {
  transform: translateX(3px);
}

/* pKorix One CTA */
.primary-plan-action {
  border-color: transparent;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #10cae7 0%,
      #00a3ca 100%
    );
  box-shadow:
    0 12px 28px rgba(0, 172, 210, 0.2);
}

.primary-plan-action:hover {
  background:
    linear-gradient(
      135deg,
      #0fd3ef 0%,
      #008fb7 100%
    );
}

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

.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  padding: 0 4px;
}

.pricing-trust > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px 20px;
}

.pricing-trust > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #c8dce5;
}

.pricing-trust > div > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: var(--cyan);
  background: transparent;
  font-size: 1.22rem;
  font-weight: 900;
}

.pricing-trust p {
  margin: 0;
}

.pricing-trust strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
}

.pricing-trust small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.35;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.billing-toggle button:focus-visible,
.plan-action:focus-visible,
.plan-advisor:focus-visible {
  outline: 3px solid rgba(8, 189, 226, 0.25);
  outline-offset: 3px;
}

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

@media (max-width: 1180px) {
  .pricing-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-side {
    align-items: flex-start;
  }

  .pricing-handwritten {
    margin-left: 14px;
    margin-right: 0;
  }

  .pricing-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .plan-card {
    min-height: 500px;
  }

  .pricing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-trust > div:nth-child(3)::before {
    display: none;
  }
}

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

@media (max-width: 680px) {
  .pricing-section {
    padding: 42px 0 85px;
  }

  .pricing-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .pricing-heading > p {
    font-size: 0.9rem;
  }

  .pricing-side {
    width: 100%;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    min-height: 52px;
    font-size: 0.9rem;
  }

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

  .plan-card {
    min-height: 0;
    padding: 24px 21px 21px;
  }

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

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

  .pricing-trust > div + div::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .plan-card,
  .plan-action,
  .plan-action b,
  .plan-advisor,
  .billing-toggle button {
    transition: none;
  }
}

/* =========================================================
   PKORIX REFERRAL REWARDS
   ========================================================= */

.referral-rewards {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 34px;
  margin-top: 28px;
  padding: 30px 32px;
  border: 1px solid rgba(8, 189, 226, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(239, 252, 255, 0.96) 100%
    );
  box-shadow:
    0 18px 48px rgba(19, 75, 106, 0.08);
}

.referral-rewards::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(8, 189, 226, 0.06);
  pointer-events: none;
}


/* Referral copy */

.referral-rewards-copy {
  position: relative;
  z-index: 1;
}

.referral-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--cyan-dark);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.referral-rewards-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.85rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.referral-rewards-copy h3 span {
  display: block;
  margin-top: 4px;
  color: var(--orange);
}

.referral-rewards-copy > p {
  max-width: 430px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}


/* Milestones */

.referral-milestones {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.referral-milestone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid #d7edf3;
  border-radius: 17px;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.referral-milestone:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 189, 226, 0.45);
  box-shadow:
    0 12px 26px rgba(19, 75, 106, 0.08);
}

.referral-count {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--cyan-dark);
  background: #e4faff;
  font-size: 1.1rem;
  font-weight: 900;
}

.referral-milestone strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.referral-milestone small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}


/* Premium 5-referral milestone */

.referral-milestone-premium {
  border: 1.5px solid var(--orange);
  background:
    linear-gradient(
      145deg,
      #fff5f1 0%,
      #ffffff 100%
    );
  box-shadow:
    0 10px 24px rgba(255, 93, 59, 0.10);
}

.referral-milestone-premium .referral-count {
  color: var(--orange);
  background: #ffe9e2;
}

.referral-crown {
  position: absolute;
  top: -9px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
  font-size: 0.62rem;
  box-shadow:
    0 5px 12px rgba(255, 93, 59, 0.22);
}


/* Terms note */

.referral-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: -7px;
  padding-top: 14px;
  border-top: 1px solid #dcecf1;
}

.referral-note > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
}

.referral-note p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}


/* Tablet */

@media (max-width: 1050px) {
  .referral-rewards {
    grid-template-columns: 1fr;
  }

  .referral-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Mobile */

@media (max-width: 640px) {
  .referral-rewards {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .referral-rewards-copy h3 {
    font-size: 1.55rem;
  }

  .referral-milestones {
    grid-template-columns: 1fr;
  }

  .referral-milestone {
    padding: 14px;
  }
}




/* =========================================================
   WEBSITE PLAN ADVISOR - ERP MATCH
   Mirrors ERP Billing Plan Advisor
   ========================================================= */

.website-advisor-launcher {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 1080;

  min-width: 272px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;

  padding: 10px 12px;

  border: 1px solid #dce5f1;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.97);
  color: #0b2a58;

  box-shadow:
    0 17px 46px rgba(16, 37, 74, 0.18);

  font-family: inherit;
  text-align: left;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.website-advisor-launcher:hover {
  transform: translateY(-2px);

  box-shadow:
    0 21px 52px rgba(16, 37, 74, 0.22);
}


.website-advisor-launcher-icon {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #235fd5,
      #0b2a58
    );

  color: #ffffff;

  font-size: 19px;

  box-shadow:
    0 6px 16px rgba(35, 95, 213, 0.24);
}


.website-advisor-launcher-copy strong,
.website-advisor-launcher-copy small {
  display: block;
}

.website-advisor-launcher-copy strong {
  color: #0b2a58;
  font-size: 12px;
  font-weight: 950;
}

.website-advisor-launcher-copy small {
  margin-top: 3px;

  color: #657592;

  font-size: 9px;
}


.website-advisor-launcher-arrow {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fff2f1;
  color: #ff655d;

  font-size: 17px;
  font-weight: 900;
}


/* =========================================================
   ADVISOR PANEL
   ========================================================= */

.website-advisor-panel {
  position: fixed;

  right: 28px;
  bottom: 24px;

  z-index: 1090;

  width: min(420px, calc(100vw - 36px));
  max-height: min(720px, calc(100vh - 80px));

  overflow-y: auto;

  margin: 0;
  padding: 20px;

  border: 1px solid #dce5f1;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.985);

  box-shadow:
    0 24px 70px rgba(16, 37, 74, 0.25);
}

.website-advisor-panel[hidden] {
  display: none !important;
}


.website-advisor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 18px;
}


.website-advisor-eyebrow {
  margin-bottom: 5px;

  color: #235fd5;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.website-advisor-head h2 {
  margin: 0;

  color: #071f45;

  font-size: 20px;
}


.website-advisor-head p {
  margin: 6px 0 0;

  color: #657592;

  font-size: 11px;
  line-height: 1.45;
}


.website-advisor-close {
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  border: 1px solid #dfe6f0;
  border-radius: 10px;

  background: #ffffff;
  color: #0b2a58;

  font-size: 19px;

  cursor: pointer;
}


/* =========================================================
   INPUTS
   ========================================================= */

.website-advisor-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 11px;

  margin-top: 18px;
}


.website-advisor-grid label > span,
.website-advisor-section-title {
  display: block;

  margin-bottom: 6px;

  color: #0b2a58;

  font-size: 10px;
  font-weight: 850;
}


.website-advisor-grid input,
.website-advisor-grid select {
  width: 100%;

  min-height: 41px;

  padding: 0 11px;

  border: 1px solid #dfe6f0;
  border-radius: 10px;

  background: #ffffff;
  color: #10254a;

  font: inherit;
  font-size: 11px;
}


/* =========================================================
   MODULES
   ========================================================= */

.website-advisor-module-wrap {
  margin-top: 16px;
}


.website-advisor-modules {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}


.website-advisor-module {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  padding: 8px 9px;

  border: 1px solid #dfe6f0;
  border-radius: 9px;

  background: #ffffff;
  color: #4f617a;

  font-size: 10px;

  cursor: pointer;
}


.website-advisor-module:has(input:checked) {
  border-color: #235fd5;

  background: #f3f6ff;
  color: #0b2a58;
}


.website-advisor-module input {
  accent-color: #235fd5;
}


/* =========================================================
   ADVANCED REQUIREMENTS
   ========================================================= */

.website-advisor-advanced {
  display: flex;
  align-items: flex-start;

  gap: 8px;

  margin-top: 14px;

  color: #596b81;

  font-size: 10px;
  line-height: 1.4;
}

.website-advisor-advanced input {
  margin-top: 2px;

  accent-color: #235fd5;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.website-advisor-submit {
  width: 100%;

  min-height: 43px;

  margin-top: 16px;
  padding: 0 18px;

  border: 0;
  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #173f7a,
      #071f45
    );

  color: #ffffff;

  font-size: 11px;
  font-weight: 900;

  cursor: pointer;
}


/* =========================================================
   RESULT
   ========================================================= */

.website-advisor-result {
  margin-top: 16px;

  padding: 15px;

  border-radius: 12px;
}

.website-advisor-result[hidden] {
  display: none !important;
}


.website-advisor-result.success {
  border: 1px solid #bfe7d7;

  background: #f1fbf7;
}


.website-advisor-result-label {
  color: #07956c;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}


.website-advisor-result h3 {
  margin: 5px 0;

  color: #071f45;

  font-size: 18px;
}


.website-advisor-result p,
.website-advisor-estimate {
  color: #566980;

  font-size: 11px;
  line-height: 1.5;
}


.website-advisor-result p {
  margin: 0;
}


.website-advisor-estimate {
  margin-top: 10px;
}


.website-advisor-estimate strong {
  color: #071f45;
}


.website-advisor-quote {
  width: 100%;

  min-height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 13px;
  padding: 0 16px;

  border: 0;
  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #173f7a,
      #071f45
    );

  color: #ffffff;

  font-family: inherit;

  font-size: 11px;
  font-weight: 900;

  cursor: pointer;
}


@media (max-width: 760px) {

  .website-advisor-launcher {
    right: 14px;
    bottom: 14px;
    left: 14px;

    min-width: 0;
  }

  .website-advisor-panel {
    right: 12px;
    bottom: 12px;

    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .website-advisor-grid {
    grid-template-columns: 1fr;
  }
}
