/* pricing.html — page-specific styles (base design system lives in assets/css/main.css) */

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

h1,
      h2,
      h3,
      h4 {
        font-family: "Syne", sans-serif;
        line-height: 1.2;
      }

@keyframes curtainSlide {
        to {
          transform: translateY(-100%);
        }
      }

.cl-logo {
        font-family: "Syne", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: clFade 0.5s ease both;
      }

.cl-logo span {
        color: var(--green);
      }

.cl-bar {
        width: 200px;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
        animation: clFade 0.4s ease 0.2s both;
      }

.cl-bar-fill {
        height: 100%;
        width: 0;
        background: var(--green);
        animation: barGrow 0.45s ease 0.3s both;
      }

@keyframes barGrow {
        to {
          width: 100%;
        }
      }

.logo em {
        font-style: normal;
        color: var(--green);
      }

.nav-links a:hover::after {
        left: 14px;
        right: 14px;
      }

.nav-links a:hover {
        color: var(--green);
      }

.ph-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 15% 60%,
            rgba(0, 212, 140, 0.13) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 85% 25%,
            rgba(167, 139, 250, 0.13) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 50% 100%,
            rgba(56, 189, 248, 0.08) 0%,
            transparent 50%
          );
      }

.orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        opacity: 0.18;
        animation: orbFloat ease-in-out infinite;
      }

.orb1 {
        width: 500px;
        height: 500px;
        background: var(--green);
        top: -200px;
        left: -150px;
        animation-duration: 12s;
      }

.orb2 {
        width: 350px;
        height: 350px;
        background: var(--purple);
        bottom: -120px;
        right: -100px;
        animation-duration: 9s;
        animation-delay: -4s;
      }

.orb3 {
        width: 200px;
        height: 200px;
        background: var(--yellow);
        top: 20%;
        right: 15%;
        animation-duration: 7s;
        animation-delay: -2s;
      }

.hero-float {
        position: absolute;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 10px 16px;
        font-family: "Syne", sans-serif;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
        animation: tagFloat ease-in-out infinite;
        backdrop-filter: blur(6px);
        user-select: none;
        pointer-events: none;
      }

.hf1 {
        top: 18%;
        left: 5%;
        animation-duration: 5s;
      }

.hf2 {
        top: 55%;
        left: 8%;
        animation-duration: 7s;
        animation-delay: -2s;
      }

.hf3 {
        top: 20%;
        right: 6%;
        animation-duration: 6s;
        animation-delay: -1s;
      }

.hf4 {
        top: 60%;
        right: 5%;
        animation-duration: 5.5s;
        animation-delay: -3s;
      }

@keyframes tagFloat {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-12px);
        }
      }

.page-hero > div > p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1.05rem;
        line-height: 1.75;
        max-width: 640px;
        margin: 0 auto 32px;
        animation: hFade 0.7s ease 0.35s both;
      }

.hero-pills {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 0;
        animation: hFade 0.7s ease 0.5s both;
      }

.hero-pill {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.8);
        padding: 7px 16px;
        border-radius: 30px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: all 0.3s;
        cursor: default;
      }

.hero-pill:hover {
        background: rgba(0, 212, 140, 0.15);
        border-color: rgba(0, 212, 140, 0.4);
        transform: translateY(-3px);
      }

.hero-pill i {
        color: var(--green);
      }

.fade-left {
        opacity: 0;
        transform: translateX(-32px);
        transition:
          opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      }

.fade-left.visible {
        opacity: 1;
        transform: none;
      }

.dl-legend {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 32px;
      }

.dl-pill {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.82rem;
        font-weight: 600;
        border: 1.5px solid;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: default;
      }

.dl-pill:hover {
        transform: translateY(-4px) scale(1.06);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      }

.dl-lowest {
        background: rgba(94, 122, 154, 0.08);
        border-color: rgba(94, 122, 154, 0.25);
        color: var(--muted);
      }

.dl-std {
        background: rgba(30, 58, 95, 0.07);
        border-color: rgba(30, 58, 95, 0.18);
        color: var(--text);
      }

.dl-pri {
        background: rgba(245, 158, 11, 0.1);
        border-color: rgba(245, 158, 11, 0.3);
        color: #92400e;
      }

.dl-rush {
        background: rgba(239, 68, 68, 0.08);
        border-color: rgba(239, 68, 68, 0.25);
        color: #dc2626;
        animation: rushPulse 2s ease-in-out infinite;
      }

@keyframes rushPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2);
        }
        50% {
          box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
        }
      }

.table-wrap {
        overflow-x: auto;
        border-radius: 20px;
        box-shadow: 0 8px 40px rgba(11, 31, 58, 0.12);
        margin-bottom: 56px;
        position: relative;
      }

.table-wrap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--green),
          var(--blue),
          var(--purple),
          var(--green)
        );
        background-size: 300% auto;
        animation: gradMove 4s linear infinite;
        border-radius: 20px 20px 0 0;
        z-index: 1;
      }

table {
        width: 100%;
        border-collapse: collapse;
        min-width: 700px;
      }

thead tr {
        background: var(--navy);
      }

thead th {
        padding: 18px 20px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

thead th:first-child {
        text-align: left;
        border-radius: 0;
      }

thead th:not(:first-child) {
        text-align: center;
      }

thead th i {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 4px;
        opacity: 0.6;
      }

tbody tr {
        border-bottom: 1px solid var(--border);
        transition:
          background 0.2s,
          transform 0.2s;
        opacity: 0;
        transform: translateX(-20px);
      }

tbody tr.row-in {
        opacity: 1;
        transform: none;
        transition:
          opacity 0.45s ease,
          transform 0.45s ease;
      }

tbody tr:nth-child(odd) {
        background: var(--off);
      }

tbody tr:nth-child(even) {
        background: var(--white);
      }

tbody tr:hover {
        background: rgba(0, 212, 140, 0.06);
        transform: scale(1.005);
        box-shadow: 0 4px 20px rgba(0, 212, 140, 0.1);
      }

tbody td {
        padding: 15px 20px;
        font-size: 0.92rem;
        position: relative;
      }

tbody td:first-child {
        font-weight: 700;
        color: var(--navy);
        font-family: "Syne", sans-serif;
      }

tbody td:not(:first-child) {
        text-align: center;
        transition: all 0.2s;
        cursor: default;
      }

tbody tr:hover td:not(:first-child) {
        color: var(--green);
      }

.td-lo {
        color: var(--muted);
      }

.td-md {
        color: var(--text);
        font-weight: 600;
      }

.td-hi {
        color: #d97706;
        font-weight: 600;
      }

.td-rush {
        color: #dc2626;
        font-weight: 800;
        font-size: 0.96rem;
      }

tbody td:last-child.td-rush {
        position: relative;
      }

tbody td:last-child.td-rush::before {
        content: "⚡";
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
        opacity: 0.5;
      }

tr.best-val td:first-child::after {
        content: "POPULAR";
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        background: var(--green);
        color: var(--navy);
        padding: 2px 7px;
        border-radius: 10px;
        margin-left: 8px;
        vertical-align: middle;
        display: inline;
      }

/* =========================================
   PRICING TABLE - RESPONSIVE ONLY
   Desktop design remains unchanged
   ========================================= */

@media (max-width: 768px) {

  .table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-bottom: 40px;
    border-radius: 16px;
  }

  table {
    /*
      Reduce the minimum width from 700px
      to make horizontal scrolling shorter.
    */
    min-width: 640px;
    width: 100%;
  }

  /* Compact table header */
  thead th {
    padding: 12px 8px;
    font-size: 0.68rem;
    letter-spacing: 0.3px;
  }

  thead th i {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }

  /* Compact table rows */
  tbody td {
    padding: 11px 8px;
    font-size: 0.78rem;
  }

  /* Academic Level column */
  tbody td:first-child {
    min-width: 100px;
    white-space: nowrap;
  }

  /* Price columns */
  tbody td:not(:first-child) {
    min-width: 85px;
    white-space: nowrap;
  }

  /* Rush price */
  .td-rush {
    font-size: 0.82rem;
  }

  /* Popular badge */
  tr.best-val td:first-child::after {
    font-size: 0.5rem;
    padding: 2px 5px;
    margin-left: 4px;
  }

  /* Lightning icon on rush price */
  tbody td:last-child.td-rush::before {
    right: 3px;
    font-size: 0.6rem;
  }
}


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

@media (max-width: 480px) {

  .table-wrap {
    border-radius: 14px;
    margin-bottom: 32px;
  }

  table {
    /*
      This makes the table considerably
      easier to scroll horizontally.
    */
    min-width: 600px;
  }

  thead th {
    padding: 10px 6px;
    font-size: 0.62rem;
    line-height: 1.25;
  }

  thead th i {
    font-size: 0.68rem;
    margin-bottom: 2px;
  }

  tbody td {
    padding: 10px 6px;
    font-size: 0.74rem;
  }

  tbody td:first-child {
    min-width: 95px;
  }

  tbody td:not(:first-child) {
    min-width: 80px;
  }

  .td-rush {
    font-size: 0.78rem;
  }

  tr.best-val td:first-child::after {
    font-size: 0.46rem;
    padding: 1px 4px;
    margin-left: 3px;
  }
}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 360px) {

  table {
    min-width: 570px;
  }

  thead th {
    padding: 9px 5px;
    font-size: 0.58rem;
  }

  thead th i {
    font-size: 0.62rem;
  }

  tbody td {
    padding: 9px 5px;
    font-size: 0.7rem;
  }

  tbody td:first-child {
    min-width: 90px;
  }

  tbody td:not(:first-child) {
    min-width: 76px;
  }

  .td-rush {
    font-size: 0.74rem;
  }
}

.calc-section {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
        border-radius: 24px;
        padding: 48px;
        position: relative;
        overflow: hidden;
        max-width: 900px;
        margin: 0 auto;
        box-shadow: 0 20px 60px rgba(11, 31, 58, 0.3);
      }

.calc-section::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 140, 0.12) 0%,
          transparent 65%
        );
        border-radius: 50%;
        animation: orbFloat 8s ease-in-out infinite;
      }

.calc-section::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(
          circle,
          rgba(167, 139, 250, 0.1) 0%,
          transparent 65%
        );
        border-radius: 50%;
        animation: orbFloat 10s ease-in-out infinite 3s;
      }

.calc-title {
        color: var(--white);
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: "Syne", sans-serif;
        position: relative;
        z-index: 1;
      }

.calc-title i {
        color: var(--green);
        animation: spinCog 6s linear infinite;
      }

.calc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 18px;
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
      }

.cform-group label {
        display: block;
        font-size: 0.74rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
      }

.cform-group select,
      .cform-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1.5px solid rgba(255, 255, 255, 0.12);
        color: var(--white);
        border-radius: 10px;
        padding: 11px 14px;
        font-size: 0.92rem;
        font-family: "DM Sans", sans-serif;
        transition: all 0.25s;
        outline: none;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(255,255,255,.4)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 13px center;
        padding-right: 34px;
      }

.cform-group input {
        background-image: none;
        padding-right: 14px;
      }

.cform-group select option {
        background: #0b1f3a;
        color: #fff;
      }

.cform-group select:hover,
      .cform-group input:hover {
        border-color: rgba(0, 212, 140, 0.45);
        background: rgba(0, 212, 140, 0.07);
      }

.cform-group select:focus,
      .cform-group input:focus {
        border-color: var(--green);
        background: rgba(0, 212, 140, 0.1);
        box-shadow: 0 0 0 4px rgba(0, 212, 140, 0.15);
      }

.result-display {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 24px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition:
          border-color 0.3s,
          background 0.3s;
      }

.result-display::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 140, 0.08) 0%,
          transparent 60%
        );
        pointer-events: none;
      }

.result-display.urgent {
        border-color: rgba(239, 68, 68, 0.4);
        background: rgba(239, 68, 68, 0.05);
      }

.result-display.priority {
        border-color: rgba(245, 158, 11, 0.4);
        background: rgba(245, 158, 11, 0.04);
      }

.result-display.good {
        border-color: rgba(0, 212, 140, 0.3);
        background: rgba(0, 212, 140, 0.05);
      }

.r-label {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
      }

.r-price {
        font-family: "Syne", sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--green);
        display: inline-block;
        line-height: 1;
        transition: color 0.3s;
      }

.r-price.bump {
        animation: pricePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }

.r-price.urgent-price {
        color: #ef4444;
      }

.r-price.priority-price {
        color: #f59e0b;
      }

.r-per {
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.8rem;
        margin-top: 4px;
      }

.r-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.72rem;
        font-weight: 700;
        margin-top: 6px;
        letter-spacing: 0.3px;
      }

.r-badge-good {
        background: rgba(0, 212, 140, 0.15);
        color: var(--green);
        border: 1px solid rgba(0, 212, 140, 0.3);
      }

.r-badge-pri {
        background: rgba(245, 158, 11, 0.15);
        color: #d97706;
        border: 1px solid rgba(245, 158, 11, 0.3);
      }

.r-badge-rush {
        background: rgba(239, 68, 68, 0.12);
        color: #ef4444;
        border: 1px solid rgba(239, 68, 68, 0.3);
      }

.btn-primary::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-primary:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-primary i {
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.btn-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.07),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-dark:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-dark i {
        transition: transform 0.3s;
      }

.btn-dark:hover i {
        transform: translateX(5px) rotate(-8deg);
      }

.btn-wa::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.15),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-wa:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-wa i {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.btn-wa:hover i {
        transform: rotate(20deg) scale(1.25);
      }

.freebies-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
        gap: 18px;
      }

.cta-banner::after {
        content: "🎓";
        position: absolute;
        right: 4%;
        top: 50%;
        transform: translateY(-50%);
        font-size: 7rem;
        opacity: 0.06;
        animation: orbFloat 8s ease-in-out infinite;
      }

.promo-wrap {
        position: relative;
        z-index: 1;
        margin-bottom: 32px;
      }

.promo-box {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        background: rgba(11, 31, 58, 0.08);
        border: 2px dashed rgba(11, 31, 58, 0.2);
        border-radius: 14px;
        padding: 14px 28px;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }

.promo-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(11, 31, 58, 0.06);
        opacity: 0;
        transition: opacity 0.3s;
      }

.promo-box:hover::before {
        opacity: 1;
      }

.promo-box:hover {
        transform: scale(1.04);
        box-shadow: 0 8px 28px rgba(11, 31, 58, 0.15);
      }

.promo-code {
        font-family: "Syne", sans-serif;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--navy);
        letter-spacing: 3px;
      }

.promo-code em {
        font-style: normal;
        color: #006e40;
      }

.promo-hint {
        font-size: 0.8rem;
        color: rgba(11, 31, 58, 0.55);
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 3px;
      }

/* .footer-grid {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
      }

.footer-logo em {
        font-style: normal;
        color: var(--green);
      }

.footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 22px 0;
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
      }

.footer-bottom a {
        color: rgba(255, 255, 255, 0.35);
        transition: color 0.2s;
      }

.footer-bottom a:hover {
        color: var(--green);
      } */

@media (max-width: 860px) {
        .calc-grid {
          grid-template-columns: 1fr 1fr;
        }
        .nav-links {
          display: none;
        }
        .hamburger {
          display: block;
        }
      }

@media (max-width: 540px) {
        .calc-grid {
          grid-template-columns: 1fr;
        }
        /* .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        } */
        .hf1,
        .hf2,
        .hf3,
        .hf4 {
          display: none;
        }
        .r-price {
          font-size: 1.8rem;
        }
      }