/* =========================================================
   K53 PRACTICE TESTS
   STYLE.CSS
   VERSION 4.0
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {
  --primary: #0d6efd;
  --primary-dark: #084298;
  --primary-deep: #062f6b;
  --primary-soft: #eaf3ff;
  --primary-pale: #f5f9ff;

  --success: #198754;
  --success-soft: #eaf8f1;

  --warning: #f59e0b;

  --dark: #142033;
  --text: #172033;
  --text-muted: #687386;
  --text-light: #8a95a7;

  --body: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;

  --border: #dfe6ef;
  --border-soft: rgba(148, 163, 184, 0.22);

  --shadow-sm:
    0 8px 22px rgba(15, 23, 42, 0.055);

  --shadow-md:
    0 14px 34px rgba(15, 23, 42, 0.08);

  --shadow-lg:
    0 24px 58px rgba(15, 23, 42, 0.13);

  --shadow-primary:
    0 14px 30px rgba(13, 110, 253, 0.22);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --transition: 180ms ease;
}


/* =========================================================
   2. GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;

  color: var(--text);
  background: var(--body);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.mobile-checkout-visible {
  padding-bottom: 92px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: #ffffff;
  background: var(--primary);
}


/* =========================================================
   3. ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.28);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0, 0, 0, 0) !important;

  white-space: nowrap !important;

  border: 0 !important;
}


/* =========================================================
   4. SHARED LAYOUT
   ========================================================= */

.section-space {
  padding-block: 76px;
}

.section-soft {
  background:
    linear-gradient(
      180deg,
      #f5f8fc 0%,
      #eef4fb 100%
    );
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  color: var(--dark);

  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 620px;
  margin-inline: auto;

  font-size: 1.02rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 32px;
  padding: 5px 13px;

  color: var(--primary-dark);
  background: var(--primary-soft);

  border:
    1px solid rgba(13, 110, 253, 0.13);

  border-radius: 999px;

  box-shadow:
    0 3px 10px rgba(15, 23, 42, 0.05);

  font-size: 0.75rem;
  font-weight: 800;

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

.text-secondary {
  color: var(--text-muted) !important;
}


/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  border-radius: var(--radius-sm);

  font-weight: 700;
  letter-spacing: -0.01em;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      #0756c9 100%
    );

  border-color: var(--primary);

  box-shadow:
    0 8px 18px rgba(13, 110, 253, 0.19);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #075edc 0%,
      var(--primary-dark) 100%
    );

  border-color: #075edc;

  box-shadow: var(--shadow-primary);
}

.btn-outline-primary {
  color: var(--primary-dark);
  background: #ffffff;

  border-color:
    rgba(13, 110, 253, 0.32);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}


/* =========================================================
   6. GENERAL CARD POLISH
   ========================================================= */

.hero-card,
.course-card,
.pricing-control-card,
.price-summary-card,
.trust-item {
  background: var(--surface);

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

  box-shadow:
    var(--shadow-sm);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}


/* =========================================================
   7. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   8. NAVIGATION
   ========================================================= */

.navbar{
    min-height:70px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(203,213,225,.65);
    box-shadow:0 2px 10px rgba(15,23,42,.04);
}

.navbar>.container{
    min-height:70px;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    padding:6px 0;

    color:var(--dark);

    font-weight:800;
    letter-spacing:-.03em;
}

.navbar-brand:hover{
    color:var(--dark);
}

.brand-icon{
    flex:0 0 46px;

    width:46px;
    height:46px;
}

.brand-logo{
    width:100%;
    height:100%;
    object-fit:contain;
}

.navbar-brand strong{
    display:block;

    margin:0;

    font-size:1.02rem;
    line-height:1.1;
}

.navbar-brand small{
    display:block;

    margin-top:2px;

    color:var(--text-muted);

    font-size:.72rem;
    font-weight:700;
    line-height:1.2;
}

.navbar-nav{
    gap:8px;
}

.nav-link{

    padding:.55rem .9rem !important;

    color:var(--text-muted);

    font-size:.95rem;
    font-weight:600;

    transition:
        color var(--transition),
        background-color var(--transition);
}

.nav-link:hover,
.nav-link:focus{

    color:var(--primary);

}

.navbar .btn{

    min-height:44px;

    padding:0 18px;

    border-radius:14px;

}

.navbar-toggler{

    border-radius:12px;

    box-shadow:none!important;

}


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

@media (max-width:991.98px){

    html{
        scroll-padding-top:72px;
    }

    .navbar{
        min-height:64px;
    }

    .navbar>.container{
        min-height:64px;
    }

    .brand-icon{
        width:42px;
        height:42px;
        flex-basis:42px;
    }

    .navbar-brand strong{
        font-size:.95rem;
    }

    .navbar-brand small{
        font-size:.68rem;
    }

    .navbar-collapse{

        margin-top:12px;

        padding:16px;

        background:#fff;

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

        border-radius:18px;

        box-shadow:var(--shadow-md);

    }

    .navbar-nav{

        gap:4px;

    }

    .nav-link{

        padding:10px 12px !important;

    }

    .navbar .btn{

        width:100%;
        margin-top:8px;

    }

}
/* =========================================================
   9. HERO SECTION
   ========================================================= */

.hero-section {
  position: relative;

  overflow: hidden;

  padding-top: 42px;
  padding-bottom: 58px;

  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(13, 110, 253, 0.17),
      transparent 34%
    ),
    radial-gradient(
      circle at 8% 94%,
      rgba(25, 135, 84, 0.10),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f8fbff 0%,
      #edf5ff 52%,
      #ffffff 100%
    );
}

.hero-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(13, 110, 253, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(13, 110, 253, 0.035) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      transparent 88%
    );
}

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

.hero-section .row {
  min-height: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 36px;
  padding: 6px 13px;

  color: var(--dark);
  background: rgba(255, 255, 255, 0.82);

  border:
    1px solid rgba(13, 110, 253, 0.13);

  border-radius: 999px;

  box-shadow:
    0 7px 20px rgba(15, 23, 42, 0.05);

  font-size: 0.82rem;
  font-weight: 700;
}

.hero-badge i {
  color: var(--dark);
}

.hero-section h1 {
  max-width: 780px;

  margin-top: 22px !important;
  margin-bottom: 22px !important;

  color: var(--dark);

  font-size:
    clamp(2.7rem, 5.3vw, 4.8rem);

  font-weight: 900;
  line-height: 1.02;

  letter-spacing: -0.055em;
}

.hero-section h1 .text-primary {
  color: var(--primary) !important;
}

.hero-section .lead {
  max-width: 660px;

  margin-bottom: 28px !important;

  color: var(--text-muted);

  font-size:
    clamp(1rem, 1.5vw, 1.18rem);

  line-height: 1.7;
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-action-buttons .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.hero-benefits {
  gap: 12px 20px !important;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--text-muted);

  font-size: 0.9rem;
  font-weight: 650;
}

.hero-benefits i {
  color: var(--success);
}

/* ---------- Hero Premium Enhancement ---------- */

.hero-section {

    padding-top: 58px;
    padding-bottom: 78px;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(13,110,253,.14),
            transparent 34%
        ),

        radial-gradient(
            circle at 0% 100%,
            rgba(13,110,253,.05),
            transparent 42%
        ),

        linear-gradient(
            180deg,
            #fbfdff 0%,
            #f5faff 40%,
            #edf5ff 100%
        );

}

.hero-section h1{

    max-width:760px;

    letter-spacing:-.065em;

    line-height:.98;

}

.hero-section .lead{

    max-width:610px;

    font-size:1.18rem;

    line-height:1.75;

}

.hero-action-buttons{

    margin-top:10px;

    gap:16px;

}

.hero-action-buttons .btn{

    min-height:56px;

    padding-inline:28px;

    border-radius:16px;

}

.hero-benefits{

    margin-top:34px !important;

    gap:18px 28px !important;

}

.hero-benefits span{

    font-size:.94rem;

}

.hero-section::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:120px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.92)
        );

    pointer-events:none;

}

/* =========================================================
   10. HERO PRODUCT CARD
   ========================================================= */

.hero-card {
  position: relative;

  margin-top: -24px;
  padding: 28px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(250, 252, 255, 0.96) 100%
    );

  border:
    1px solid rgba(13, 110, 253, 0.10);

  border-radius: var(--radius-xl);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.11),
    0 10px 24px rgba(13, 110, 253, 0.05);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-card::before {
  content: "";

  position: absolute;
  top: -90px;
  right: -80px;

  width: 210px;
  height: 210px;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(13, 110, 253, 0.12) 0%,
      transparent 70%
    );
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(13, 110, 253, 0.16);

  box-shadow:
    0 42px 90px rgba(15, 23, 42, 0.13),
    0 14px 30px rgba(13, 110, 253, 0.08);
}

.hero-card small.text-uppercase {
  color: var(--text-muted) !important;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.09em;
}

.hero-card h2 {
  margin-top: 3px;

  color: var(--dark);

  font-size: 1.7rem;
  font-weight: 750;

  letter-spacing: -0.04em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;

  color: var(--success);
  background:
    linear-gradient(
      180deg,
      #effaf5 0%,
      var(--success-soft) 100%
    );

  border:
    1px solid rgba(25, 135, 84, 0.15);

  border-radius: 999px;

  box-shadow:
    0 5px 14px rgba(25, 135, 84, 0.07);

  font-size: 0.74rem;
  font-weight: 800;

  white-space: nowrap;
}

.question-preview {
  margin-top: 26px !important;
  padding: 22px;

  background:
    linear-gradient(
      180deg,
      #f6f9fd 0%,
      #f1f5fa 100%
    );

  border:
    1px solid rgba(148, 163, 184, 0.24);

  border-radius: 22px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.question-preview > .d-flex {
  gap: 16px;
}

.question-preview > .d-flex > span:first-child {
  color: var(--dark);

  font-size: 0.94rem;
}

.question-preview > .d-flex > span:last-child {
  font-size: 0.85rem;

  text-align: right;
}

.question-preview > p {
  max-width: 420px;

  color: var(--dark);

  font-size: 0.96rem;
  line-height: 1.55;
}

.answer-option {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 11px;
  padding: 13px 14px;

  color: var(--text-muted);
  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid rgba(148, 163, 184, 0.28);

  border-radius: 14px;

  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.025);

  font-size: 0.89rem;
  font-weight: 650;

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.answer-option:hover {
  transform: translateX(3px);

  border-color:
    rgba(13, 110, 253, 0.20);

  box-shadow:
    0 7px 18px rgba(15, 23, 42, 0.05);
}

.answer-option-correct {
  color: var(--success);

  background:
    linear-gradient(
      180deg,
      #effaf5 0%,
      var(--success-soft) 100%
    );

  border-color:
    rgba(25, 135, 84, 0.22);
}

.answer-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  color: currentColor;
  background: rgba(255, 255, 255, 0.72);

  border:
    1px solid currentColor;

  border-radius: 50%;

  font-size: 0.75rem;
}

.hero-card > .mt-4 {
  margin-top: 22px !important;
}

.hero-card > .mt-4 .btn {
  min-height: 56px;

  border-radius: 16px;

  font-size: 1rem;
}


/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

  .hero-section {
    padding-top: 44px;
    padding-bottom: 62px;
  }

  .hero-section .row {
    min-height: auto;
  }

  .hero-section .col-lg-7 {
    text-align: center;
  }

  .hero-section h1,
  .hero-section .lead {
    margin-inline: auto;
  }

  .hero-action-buttons,
  .hero-benefits {
    justify-content: center;
  }

  .hero-card {
    max-width: 600px;

    margin-top: 0;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {

  .hero-section {
    padding-top: 32px;
    padding-bottom: 54px;
  }

  .hero-section h1 {
    margin-top: 18px !important;

    font-size:
      clamp(2.25rem, 10vw, 3.25rem);

    line-height: 1.04;
  }

  .hero-section .lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-action-buttons .btn {
    width: 100%;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 20px;

    border-radius: 22px;
  }

  .hero-card h2 {
    font-size: 1.45rem;
  }

  .status-badge {
    padding: 7px 11px;

    font-size: 0.68rem;
  }

  .question-preview {
    margin-top: 20px !important;
    padding: 16px;

    border-radius: 18px;
  }

  .question-preview > .d-flex {
    align-items: flex-start !important;
  }

  .question-preview > .d-flex > span:last-child {
    max-width: 130px;
  }

  .answer-option {
    padding: 11px 12px;

    font-size: 0.84rem;
    line-height: 1.4;
  }

  .answer-letter {
    flex-basis: 28px;

    width: 28px;
    height: 28px;
  }

  .hero-card > .mt-4 .btn {
    min-height: 52px;

    font-size: 0.92rem;
  }
}

/* =========================================================
   11. TRUST STRIP
   ========================================================= */

.trust-section{

    position:relative;

    margin-top:-34px;

    z-index:5;

}

.trust-item{

    display:flex;
    align-items:center;
    gap:14px;

    height:100%;

    padding:18px;

    background:#fff;

    border-radius:18px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}

.trust-item:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.trust-icon{

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

    width:50px;
    height:50px;

    color:var(--primary);

    background:var(--primary-soft);

    border-radius:14px;

    font-size:1.3rem;

}

.trust-item strong{

    display:block;

    color:var(--dark);

    font-size:1.02rem;

}

.trust-item small{

    color:var(--text-muted);

    font-size:.82rem;

}


/* =========================================================
   12. LICENCE CARDS
   ========================================================= */

.course-card{

    position:relative;

    display:flex;
    flex-direction:column;

    padding:22px;

    border-radius:22px;

    cursor:pointer;

    overflow:hidden;

}

.course-card:hover{

    transform:translateY(-4px);

    border-color:
        rgba(13,110,253,.28);

    box-shadow:
        0 18px 40px rgba(13,110,253,.12);

}

.course-card-selected{

    border-color:var(--primary);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f9fbff 100%
        );

    box-shadow:
        0 18px 40px rgba(13,110,253,.18);

}

.course-card-selected:hover{

    transform:translateY(-4px);

}

.course-card-top{

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

    margin-bottom:14px;

}

.course-card-featured .course-card-top{

    padding-top:38px;

}

.course-icon{

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

    width:58px;
    height:58px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    border-radius:16px;

    font-size:1.6rem;

    box-shadow:
        0 10px 22px rgba(13,110,253,.18);

}

.popular-badge{

    position:absolute;

    top:14px;
    right:14px;

    display:flex;
    align-items:center;
    gap:5px;

    padding:6px 11px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #ffb000,
            #ff8800
        );

    border-radius:999px;

    font-size:.68rem;
    font-weight:800;

    box-shadow:
        0 8px 18px rgba(255,145,0,.22);

}

.course-selected-badge{

    display:none;

    align-items:center;
    gap:5px;

    padding:5px 9px;

    color:var(--success);

    background:var(--success-soft);

    border-radius:999px;

    font-size:.64rem;
    font-weight:800;

}

.course-card-selected .course-selected-badge{

    display:flex;

}

.course-code{

    color:var(--primary);

    font-size:.74rem;
    font-weight:800;

    letter-spacing:.08em;
    text-transform:uppercase;

}

.course-card h3{

    margin-top:10px;
    margin-bottom:8px;

    color:var(--dark);

    font-size:1.55rem;

    line-height:1.2;

}

.course-card>p{

    margin-bottom:12px;

    color:var(--text-muted);

    font-size:.94rem;

    line-height:1.5;

}

.course-list{

    display:grid;

    gap:8px;

    margin:14px 0 18px;

    padding:0;

    list-style:none;

}

.course-list li{

    display:flex;
    gap:9px;

    color:var(--text-muted);

    font-size:.89rem;

}

.course-list i{

    margin-top:2px;

    color:var(--success);

}

.course-select-button{

    width:100%;

    min-height:48px;

    margin-top:auto;

}


/* =========================================================
   MOBILE COURSE CARDS
   ========================================================= */

@media (max-width:767.98px){

    .trust-section{

        margin-top:-22px;

    }

    .course-card{

        padding:20px;

    }

    .course-card-top{

        flex-direction:row;

        align-items:center;

    }

    .course-icon{

        width:52px;
        height:52px;

        font-size:1.4rem;

    }

    .course-card h3{

        font-size:1.4rem;

    }

    .course-card>p{

        font-size:.92rem;

    }

    .popular-badge{

        top:12px;
        right:12px;

        font-size:.62rem;

        padding:5px 9px;

    }

    .course-card-featured .course-card-top{

        padding-top:34px;

    }

}
/* =========================================================
   13. PRICING SECTION SPACING
   ========================================================= */

#courses {
  padding-bottom: 36px;
}

#pricing {
  padding-top: 36px;
}

.pricing-builder {
  margin-top: 30px;
}


/* =========================================================
   14. PRICING CARDS
   ========================================================= */

.pricing-control-card,
.price-summary-card {
  height: auto;

  padding: 22px;

  background: var(--surface);

  border-radius: var(--radius-lg);
}

.pricing-control-card:hover,
.price-summary-card:hover {
  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

.pricing-divider {
  margin: 20px 0;

  border-color: var(--border);
}


/* =========================================================
   15. SELECTED COURSE PANEL
   ========================================================= */

.selected-course-panel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.selected-course-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 60px;

  width: 60px;
  height: 60px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );

  border-radius: 16px;

  box-shadow:
    0 10px 22px rgba(13, 110, 253, 0.18);

  font-size: 1.55rem;
}

.selected-course-content {
  flex: 1;
  min-width: 0;
}

.pricing-label {
  display: block;

  margin-bottom: 3px;

  color: var(--text-light);

  font-size: 0.72rem;
  font-weight: 800;

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 12px;

  color: var(--success);
  background: var(--success-soft);

  border:
    1px solid rgba(25, 135, 84, 0.13);

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 800;

  white-space: nowrap;
}


/* =========================================================
   16. ACCESS PERIOD
   ========================================================= */

.mobile-access-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;
}

.mobile-value-message {
  display: flex;
  align-items: center;
  gap: 7px;

  color: var(--success);

  font-size: 0.82rem;
  font-weight: 700;
}

.access-display-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 14px;
  margin-bottom: 20px;

  padding: 18px;

  background: var(--primary-pale);

  border:
    1px solid rgba(13, 110, 253, 0.10);

  border-radius: 18px;

  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.03);
}

.access-days-display strong {
  display: block;

  color: var(--primary);

  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.95;
}

.access-days-display span {
  color: var(--text-muted);

  font-size: 0.95rem;
  font-weight: 700;
}

.access-live-price {
  text-align: right;
}

.access-live-price span {
  display: block;

  color: var(--text-muted);

  font-size: 0.8rem;
}

.access-live-price strong {
  display: block;

  margin-top: 4px;

  color: var(--dark);

  font-size: 1.9rem;
  line-height: 1;
}


/* =========================================================
   17. ACCESS SLIDER
   ========================================================= */

.slider-wrapper {
  margin-bottom: 16px;
}

.access-slider {
  width: 100%;
  height: 8px;

  margin-bottom: 15px;

  cursor: pointer;
}

.slider-scale {
  display: flex;
  justify-content: space-between;

  color: var(--text-light);

  font-size: 0.78rem;
}


/* =========================================================
   18. QUICK SELECT BUTTONS
   ========================================================= */

.quick-access-heading {
  margin-bottom: 8px;
}

.quick-access-buttons {
  display: grid;

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

  gap: 8px;
}

.quick-day-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: 66px;

  padding: 8px 5px;

  border-radius: 14px;

  font-weight: 800;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.quick-day-button:hover {
  transform: translateY(-2px);
}

.quick-day-button strong {
  font-size: 1.08rem;
  line-height: 1;
}

.quick-day-button small {
  margin-top: 4px;

  font-size: 0.68rem;
}

.quick-day-button.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);

  box-shadow:
    0 7px 16px rgba(13, 110, 253, 0.18);
}


/* =========================================================
   19. PRICING TIP
   ========================================================= */

.pricing-tip {
  display: flex;
  align-items: center;
  gap: 11px;

  margin-top: 18px;

  padding: 14px 16px;

  color: var(--text-muted);
  background: #f7fbff;

  border:
    1px solid rgba(13, 110, 253, 0.08);

  border-radius: 16px;

  font-size: 0.84rem;
}

.pricing-tip i {
  flex: 0 0 auto;

  color: var(--warning);

  font-size: 1.1rem;
}


/* =========================================================
   20. DESKTOP PRICING ALIGNMENT
   ========================================================= */

@media (min-width: 992px) {

  #pricing .row.align-items-stretch {
    align-items: flex-start !important;
  }

  .pricing-control-card.h-100,
  .price-summary-card.h-100 {
    height: auto !important;
  }
}


/* =========================================================
   21. MOBILE PRICING
   ========================================================= */

@media (max-width: 767.98px) {

  #courses {
    padding-bottom: 28px;
  }

  #pricing {
    padding-top: 28px;
  }

  .pricing-builder {
    margin-top: 24px;
  }

  .pricing-control-card,
  .price-summary-card {
    padding: 20px;
  }

  .selected-course-panel {
    align-items: flex-start;
  }

  .selected-course-icon {
    flex-basis: 54px;

    width: 54px;
    height: 54px;

    font-size: 1.4rem;
  }

  .mobile-access-heading {
    align-items: flex-start;
  }

  .mobile-value-message {
    max-width: 145px;

    text-align: right;
  }

  .access-display-panel {
    padding: 16px;
  }

  .access-days-display strong {
    font-size: 2.8rem;
  }

  .access-live-price strong {
    font-size: 1.7rem;
  }

  .quick-access-buttons {
    gap: 6px;
  }

  .quick-day-button {
    min-height: 54px;

    padding: 6px 2px;

    border-radius: 11px;
  }

  .quick-day-button strong {
    font-size: 0.96rem;
  }

  .quick-day-button small {
    margin-top: 2px;

    font-size: 0.6rem;
  }

  .pricing-tip {
    padding: 12px 14px;

    font-size: 0.8rem;
  }
}
/* =========================================================
   22. ORDER SUMMARY
   ========================================================= */

.price-summary-card{
    position:sticky;
    top:92px;

    display:flex;
    flex-direction:column;
}

.summary-heading-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
}

.summary-secure-badge{

    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:7px 12px;

    color:var(--success);
    background:var(--success-soft);

    border:1px solid rgba(25,135,84,.14);

    border-radius:999px;

    font-size:.72rem;
    font-weight:800;
}


/* =========================================================
   PRODUCT SUMMARY
   ========================================================= */

.summary-product{

    display:flex;
    align-items:center;
    gap:14px;

    margin-top:16px;

    padding:14px;

    background:var(--surface-soft);

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

    border-radius:18px;
}

.summary-product-icon{

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

    width:48px;
    height:48px;

    flex:0 0 48px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    border-radius:14px;

    font-size:1.2rem;
}

.summary-product-content{

    flex:1;
    min-width:0;

}

.summary-product-content strong{

    display:block;

    color:var(--dark);

    font-size:.98rem;

}

.summary-product-content span{

    display:block;

    margin-top:2px;

    overflow:hidden;

    color:var(--text-muted);

    font-size:.82rem;

    white-space:nowrap;
    text-overflow:ellipsis;

}

.summary-selected-check{

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

    width:28px;
    height:28px;

    flex:0 0 28px;

    color:#fff;

    background:var(--success);

    border-radius:50%;

    font-size:.78rem;
}


/* =========================================================
   SUMMARY DETAILS
   ========================================================= */

.summary-details{

    display:grid;

    gap:10px;

    margin-top:16px;

}

.summary-details>div{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:18px;

    padding-bottom:10px;

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

}

.summary-details span{

    color:var(--text-muted);

    font-size:.84rem;

}

.summary-details strong{

    max-width:60%;

    color:var(--dark);

    font-size:.86rem;

    text-align:right;

}


/* =========================================================
   TOTAL PRICE PANEL
   ========================================================= */

.mobile-price-overview{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:18px;

    margin-top:18px;

    padding:18px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary-deep),
            var(--primary)
        );

    border-radius:20px;

    box-shadow:
        0 14px 30px rgba(13,110,253,.20);

}

.mobile-price-main{

    display:flex;
    flex-direction:column;

}

.total-payment-label{

    color:rgba(255,255,255,.76);

    font-size:.72rem;
    font-weight:800;

    letter-spacing:.07em;

    text-transform:uppercase;

}

.mobile-price-main strong{

    margin-top:4px;

    font-size:2.4rem;

    line-height:1;

}

.mobile-price-main span:last-child{

    margin-top:6px;

    color:rgba(255,255,255,.76);

    font-size:.82rem;

}

.mobile-discount-highlight{

    text-align:right;

}

.discount-badge{

    display:inline-flex;
    align-items:center;

    padding:6px 10px;

    color:var(--primary-deep);

    background:#fff;

    border-radius:999px;

    font-size:.74rem;
    font-weight:900;

}

.mobile-discount-highlight small{

    display:block;

    margin-top:6px;

    color:rgba(255,255,255,.75);

    font-size:.72rem;

}


/* =========================================================
   SAVINGS PANEL
   ========================================================= */

.savings-panel{

    display:flex;
    align-items:center;
    gap:12px;

    margin-top:14px;

    padding:14px;

    background:
        linear-gradient(
            135deg,
            var(--success-soft),
            #f7fcf8
        );

    border:1px solid rgba(25,135,84,.15);

    border-radius:18px;

}

.savings-icon{

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

    width:46px;
    height:46px;

    flex:0 0 46px;

    color:var(--success);

    background:#fff;

    border-radius:14px;

}

.savings-content{

    display:flex;
    flex-direction:column;

}

.savings-eyebrow{

    color:var(--success);

    font-size:.68rem;
    font-weight:800;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.normal-value{

    margin-top:2px;

    color:var(--text-muted);

    font-size:.76rem;

}


/* =========================================================
   CHECKOUT BENEFITS
   ========================================================= */

.checkout-benefits{

    display:grid;

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

    gap:8px;

    margin-top:16px;

}

.checkout-benefits span{

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

    min-height:60px;

    padding:8px;

    text-align:center;

    background:var(--surface-soft);

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

    border-radius:12px;

    font-size:.66rem;
    font-weight:700;

    color:var(--text-muted);

}

.checkout-benefits i{

    margin-bottom:4px;

    color:var(--primary);

    font-size:.95rem;

}


/* =========================================================
   CHECKOUT BUTTON
   ========================================================= */

.checkout-button{

    width:100%;

    min-height:56px;

    margin-top:16px;

    border-radius:15px;

    font-size:1rem;
    font-weight:700;

}

.secure-checkout-note{

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

    gap:8px;

    margin-top:12px;

    color:var(--text-light);

    font-size:.74rem;

    text-align:center;

}

.secure-checkout-note i{

    color:var(--success);

    margin-top:2px;

}


/* =========================================================
   MOBILE STICKY CHECKOUT
   ========================================================= */

.mobile-sticky-checkout{

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    z-index:1040;

    display:none;

    padding:10px;

    background:rgba(255,255,255,.96);

    border-top:1px solid rgba(203,213,225,.9);

    backdrop-filter:blur(18px);

    box-shadow:
        0 -10px 24px rgba(15,23,42,.10);

}

.mobile-sticky-content{

    display:grid;

    grid-template-columns:1fr auto auto;

    align-items:center;

    gap:12px;

}

.mobile-sticky-summary,
.mobile-sticky-price{

    display:flex;
    flex-direction:column;

}

.mobile-sticky-summary span,
.mobile-sticky-price strong{

    font-size:.88rem;
    font-weight:800;

}

.mobile-sticky-summary small,
.mobile-sticky-price small{

    color:var(--text-muted);

    font-size:.68rem;

}

.mobile-sticky-button{

    min-height:46px;

    padding:0 16px;

    border-radius:13px;

}


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

@media (max-width:767.98px){

    .summary-details strong{

        max-width:56%;

    }

    .mobile-price-overview{

        flex-direction:column;
        align-items:flex-start;

    }

    .mobile-discount-highlight{

        text-align:left;

    }

    .mobile-sticky-checkout{

        display:block;

    }

}
/* =========================================================
   23. HOW IT WORKS
   ========================================================= */

.process-card {
  position: relative;

  height: 100%;
  padding: 26px;

  overflow: hidden;

  background: var(--surface);

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

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(13, 110, 253, 0.22);

  box-shadow: var(--shadow-md);
}

.process-number {
  position: absolute;
  top: 12px;
  right: 18px;

  color:
    rgba(13, 110, 253, 0.07);

  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
}

.process-icon {
  position: relative;
  z-index: 1;

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

  width: 58px;
  height: 58px;

  margin-bottom: 18px;

  color: var(--primary);
  background: var(--primary-soft);

  border:
    1px solid rgba(13, 110, 253, 0.10);

  border-radius: 16px;

  font-size: 1.45rem;

  box-shadow:
    0 8px 18px rgba(13, 110, 253, 0.08);
}

.process-card h3 {
  position: relative;
  z-index: 1;

  margin-bottom: 10px;

  color: var(--dark);

  letter-spacing: -0.025em;
}

.process-card p {
  position: relative;
  z-index: 1;

  color: var(--text-muted);

  line-height: 1.6;
}


/* =========================================================
   24. FINAL CTA
   ========================================================= */

.cta-panel {
  position: relative;

  padding: 46px;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 255, 255, 0.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--primary-deep) 0%,
      var(--primary) 100%
    );

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

  border-radius: var(--radius-xl);

  box-shadow: var(--shadow-lg);
}

.cta-panel::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 36px 36px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #ffffff;

  letter-spacing: -0.04em;
}

.cta-panel p {
  max-width: 680px;

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

  line-height: 1.65;
}

.cta-panel .btn {
  min-height: 52px;

  padding-inline: 22px;
}

.cta-panel .btn-light {
  color: var(--primary-deep);
  background: #ffffff;

  border-color: #ffffff;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.cta-panel .btn-light:hover,
.cta-panel .btn-light:focus {
  color: var(--primary-deep);
  background: #f8fbff;

  border-color: #f8fbff;

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   HOW IT WORKS + CTA RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

  .cta-panel {
    padding: 40px;

    text-align: center;
  }

  .cta-panel h2,
  .cta-panel p {
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {

  .process-card {
    padding: 22px;
  }

  .process-number {
    font-size: 3.7rem;
  }

  .process-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 16px;

    font-size: 1.3rem;
  }

  .cta-panel {
    padding: 30px 22px;

    border-radius: 22px;
  }

  .cta-panel .btn {
    width: 100%;
  }
}

/* =========================================================
   25. FOOTER
   ========================================================= */

.site-footer {
  position: relative;

  margin-top: 60px;
  padding: 28px 0 18px;

  overflow: hidden;

  color: var(--text-muted);

  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #eef5ff 100%
    );

  border-top: 1px solid #dbe7f5;
}

.site-footer::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(13, 110, 253, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(13, 110, 253, 0.025) 1px,
      transparent 1px
    );

  background-size: 42px 42px;
}

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


/* ---------- TOP ROW ---------- */

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding-bottom: 20px;
}


/* ---------- BRAND ---------- */

.footer-brand {
  display: flex;
  align-items: center;

  gap: 14px;
}

.footer-brand-logo {
  display: block;

  width: 58px;
  height: 58px;

  object-fit: cover;

  border-radius: 10px;

  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.08);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-text strong {
  color: var(--dark);

  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer-brand-text small {
  margin-top: 3px;

  color: var(--text-muted);

  font-size: 0.86rem;
  font-weight: 600;
}


/* ---------- LINKS ---------- */

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 28px;
}

.footer-links a {
  position: relative;

  color: var(--text-muted);

  font-size: 0.92rem;
  font-weight: 650;

  text-decoration: none;

  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--primary);

  transform: translateY(-1px);
}


/* ---------- DIVIDER ---------- */

.footer-divider {
  height: 1px;

  margin-bottom: 16px;

  background: #dbe7f5;
}


/* ---------- BOTTOM ROW ---------- */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: var(--text-light);

  font-size: 0.82rem;
}

.footer-security {
  display: inline-flex;
  align-items: center;

  gap: 7px;
}

.footer-security i {
  color: var(--success);

  font-size: 0.95rem;
}


/* ---------- TABLET ---------- */

@media (max-width: 991.98px) {

  .footer-top {
    gap: 26px;
  }

  .footer-links {
    gap: 20px;
  }
}


/* ---------- MOBILE ---------- */

@media (max-width: 767.98px) {

  .site-footer {
    margin-top: 42px;
    padding: 24px 0 16px;
  }

  .footer-top {
    flex-direction: column;

    gap: 20px;

    padding-bottom: 18px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand-logo {
    width: 54px;
    height: 54px;
  }

  .footer-brand-text strong {
    font-size: 1.08rem;
  }

  .footer-brand-text small {
    font-size: 0.82rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px 20px;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

  .footer-divider {
    margin-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 7px;

    text-align: center;

    font-size: 0.78rem;
  }
}


/* ---------- VERY SMALL SCREENS ---------- */

@media (max-width: 420px) {

  .footer-brand {
    gap: 11px;
  }

  .footer-brand-logo {
    width: 50px;
    height: 50px;
  }

  .footer-links {
    gap: 9px 16px;
  }

  .footer-links a {
    font-size: 0.84rem;
  }
}

/* =========================================================
   26. GLOBAL SECTION SPACING
   ========================================================= */

section {
  scroll-margin-top: 92px;
}

.section-padding {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 38px;
  margin-left: auto;

  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;

  color: var(--dark);

  font-size:
    clamp(2rem, 4vw, 3rem);

  font-weight: 850;
  line-height: 1.12;

  letter-spacing: -0.04em;
}

.section-heading p {
  margin-bottom: 0;

  color: var(--text-muted);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   27. SHARED CARD CONSISTENCY
   ========================================================= */

.hero-card,
.trust-item,
.course-card,
.pricing-control-card,
.price-summary-card,
.process-card {
  border:
    1px solid var(--border-soft);

  box-shadow: var(--shadow-sm);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}


/* =========================================================
   28. BUTTON POLISH
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-weight: 700;

  border-radius: var(--radius-sm);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  box-shadow:
    0 8px 18px rgba(13, 110, 253, 0.16);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow:
    0 11px 24px rgba(13, 110, 253, 0.22);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  box-shadow:
    0 8px 18px rgba(13, 110, 253, 0.12);
}


/* =========================================================
   29. FORM FOCUS STATES
   ========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline:
    3px solid rgba(13, 110, 253, 0.22);

  outline-offset: 3px;
}

.access-slider:focus-visible {
  outline-offset: 6px;
}


/* =========================================================
   30. TABLET CLEANUP
   ========================================================= */

@media (max-width: 991.98px) {

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .price-summary-card {
    position: static;
    top: auto;

    margin-top: 22px;
  }

  .trust-item {
    padding: 16px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;
  }

  .checkout-benefits {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}


/* =========================================================
   31. MOBILE CLEANUP
   ========================================================= */

@media (max-width: 767.98px) {

  body {
    padding-bottom: 82px;
  }

  section {
    scroll-margin-top: 78px;
  }

  .section-padding {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size:
      clamp(1.8rem, 8vw, 2.35rem);
  }

  .section-heading p {
    font-size: 0.94rem;
  }

  .trust-item {
    gap: 12px;
  }

  .trust-item strong {
    font-size: 0.96rem;
  }

  .trust-item small {
    font-size: 0.78rem;
  }

  .course-card,
  .pricing-control-card,
  .price-summary-card,
  .process-card {
    border-radius: 18px;
  }

  .summary-heading-row {
    align-items: center;
  }

  .summary-secure-badge {
    padding: 6px 9px;

    font-size: 0.66rem;
  }

  .summary-product {
    padding: 12px;
  }

  .summary-product-icon {
    width: 44px;
    height: 44px;

    flex-basis: 44px;
  }

  .checkout-benefits {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 6px;
  }

  .checkout-benefits span {
    min-height: 56px;

    padding: 6px 4px;

    font-size: 0.61rem;
  }

  .secure-checkout-note {
    font-size: 0.7rem;
  }

  .mobile-sticky-content {
    gap: 8px;
  }

  .mobile-sticky-summary {
    min-width: 0;
  }

  .mobile-sticky-summary span {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-sticky-price {
    text-align: right;
  }

  .mobile-sticky-button {
    padding-right: 13px;
    padding-left: 13px;

    font-size: 0.82rem;
  }
}


/* =========================================================
   32. VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 420px) {

  .hero-section h1 {
    font-size: 2.18rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-benefits span {
    font-size: 0.84rem;
  }

  .access-display-panel {
    gap: 10px;
  }

  .access-days-display strong {
    font-size: 2.5rem;
  }

  .access-live-price strong {
    font-size: 1.5rem;
  }

  .quick-day-button strong {
    font-size: 0.88rem;
  }

  .quick-day-button small {
    font-size: 0.56rem;
  }

  .mobile-price-main strong {
    font-size: 2.1rem;
  }

  .checkout-benefits {
    grid-template-columns: 1fr;
  }

  .checkout-benefits span {
    flex-direction: row;
    gap: 7px;

    min-height: 42px;
  }

  .checkout-benefits i {
    margin-bottom: 0;
  }

  .mobile-sticky-content {
    grid-template-columns: 1fr auto;
  }

  .mobile-sticky-price {
    display: none;
  }
}


/* =========================================================
   33. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* ==========================================================
   Checkout Course Selector
========================================================== */

.checkout-course-options{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:14px;

}

.checkout-course-option{

display:flex;
align-items:center;
gap:14px;

padding:18px;

background:#fff;

border:2px solid #dbe4f3;

border-radius:16px;

cursor:pointer;

transition:.2s;

text-align:left;

}

.checkout-course-option:hover{

border-color:#0d6efd;

transform:translateY(-2px);

box-shadow:0 10px 22px rgba(13,110,253,.12);

}

.checkout-course-option.active{

border-color:#0d6efd;

background:#eef5ff;

box-shadow:0 10px 24px rgba(13,110,253,.16);

}

.checkout-course-option-icon{

width:56px;
height:56px;

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

border-radius:14px;

background:#0d6efd;

color:#fff;

font-size:24px;

flex-shrink:0;

}

.checkout-course-option-text{

display:flex;
flex-direction:column;

}

.checkout-course-option-text strong{

font-size:18px;

color:#172033;

}

.checkout-course-option-text small{

font-size:13px;

color:#667085;

margin-top:2px;

}

@media(max-width:768px){

.checkout-course-options{

grid-template-columns:1fr;

}

}

/* =========================================================
   34. PREMIUM CHECKOUT PAGE
   ========================================================= */

body.checkout-page {
  min-height: 100vh;
  padding-bottom: 0;

  background:
    radial-gradient(
      circle at 92% 4%,
      rgba(13, 110, 253, 0.13),
      transparent 28%
    ),
    radial-gradient(
      circle at 4% 92%,
      rgba(25, 135, 84, 0.07),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #eef4fb 100%
    );
}


/* ---------- Header ---------- */

.checkout-header {
  position: relative;
  z-index: 20;

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

  border-bottom:
    1px solid rgba(203, 213, 225, 0.72);

  box-shadow:
    0 5px 22px rgba(15, 23, 42, 0.05);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 82px;

  gap: 24px;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;

  gap: 13px;
}

.checkout-logo {
  width: 52px;
  height: 52px;

  object-fit: cover;

  border-radius: 14px;

  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.10);
}

.checkout-brand strong {
  display: block;

  color: var(--dark);

  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.2;

  letter-spacing: -0.025em;
}

.checkout-brand small {
  display: block;

  margin-top: 3px;

  color: var(--text-muted);

  font-size: 0.74rem;
  font-weight: 650;
}

.checkout-security {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  min-height: 40px;
  padding: 8px 14px;

  color: var(--success);
  background: var(--success-soft);

  border:
    1px solid rgba(25, 135, 84, 0.15);

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;
}


/* ---------- Main layout ---------- */

.checkout-main {
  position: relative;

  padding-top: 44px;
  padding-bottom: 70px;
}

.checkout-main::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(13, 110, 253, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(13, 110, 253, 0.025) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      transparent 88%
    );
}

.checkout-main > .container {
  position: relative;
  z-index: 2;
}


/* ---------- Intro ---------- */

.checkout-intro {
  max-width: 760px;

  margin-bottom: 34px;
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 20px;

  color: var(--primary-dark);

  font-size: 0.88rem;
  font-weight: 750;

  transition:
    color var(--transition),
    transform var(--transition);
}

.checkout-back-link:hover {
  color: var(--primary);

  transform: translateX(-2px);
}

.checkout-eyebrow {
  display: inline-flex;
  align-items: center;

  min-height: 30px;
  padding: 5px 12px;

  color: var(--primary-dark);
  background: var(--primary-soft);

  border:
    1px solid rgba(13, 110, 253, 0.12);

  border-radius: 999px;

  font-size: 0.7rem;
  font-weight: 850;

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

.checkout-intro h1 {
  margin-top: 15px;
  margin-bottom: 10px;

  color: var(--dark);

  font-size:
    clamp(2.2rem, 4vw, 3.25rem);

  font-weight: 900;
  line-height: 1.06;

  letter-spacing: -0.05em;
}

.checkout-intro > p {
  max-width: 680px;

  margin: 0;

  color: var(--text-muted);

  font-size: 1.04rem;
  line-height: 1.7;
}


/* ---------- Checkout cards ---------- */

.checkout-card,
.summary-card,
.checkout-help {
  background:
    rgba(255, 255, 255, 0.97);

  border:
    1px solid rgba(148, 163, 184, 0.24);

  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.075);
}

.checkout-card {
  margin-bottom: 22px;
  padding: 28px;

  border-radius: 24px;
}

.checkout-card-heading {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  margin-bottom: 24px;
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );

  border-radius: 13px;

  box-shadow:
    0 9px 20px rgba(13, 110, 253, 0.20);

  font-size: 0.95rem;
  font-weight: 850;
}

.checkout-card-heading h2 {
  margin: 0;

  color: var(--dark);

  font-size: 1.4rem;
  font-weight: 850;

  letter-spacing: -0.035em;
}

.checkout-card-heading p {
  margin-top: 5px;
  margin-bottom: 0;

  color: var(--text-muted);

  font-size: 0.92rem;
  line-height: 1.55;
}


/* ---------- Form fields ---------- */

.checkout-page .form-label {
  margin-bottom: 7px;

  color: var(--dark);

  font-size: 0.86rem;
  font-weight: 750;
}

.checkout-page .form-control {
  min-height: 52px;

  padding: 12px 15px;

  color: var(--dark);
  background: #ffffff;

  border:
    1px solid #d8e1ed;

  border-radius: 14px;

  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.025);

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.checkout-page .form-control:hover {
  border-color:
    rgba(13, 110, 253, 0.34);
}

.checkout-page .form-control:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 4px rgba(13, 110, 253, 0.11);
}

.checkout-page .form-control[readonly] {
  color: #445066;

  background:
    linear-gradient(
      180deg,
      #f6f8fb 0%,
      #f1f5f9 100%
    );

  border-color: #dce3ec;

  cursor: not-allowed;
}

.checkout-page .form-text {
  margin-top: 7px;

  color: var(--text-light);

  font-size: 0.76rem;
}

.optional-label {
  margin-left: 5px;

  color: var(--text-light);

  font-size: 0.7rem;
  font-weight: 650;
}

.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;

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

  width: 38px;
  height: 38px;

  padding: 0;

  color: var(--text-muted);
  background: transparent;

  border: 0;
  border-radius: 10px;

  transform: translateY(-50%);
}

.password-toggle:hover {
  color: var(--primary);
  background: var(--primary-soft);
}


/* ---------- Premium licence selector ---------- */

.checkout-course-options {
  display: grid !important;

  grid-template-columns:
    repeat(3, minmax(0, 1fr)) !important;

  gap: 12px !important;

  width: 100%;
}

.checkout-course-option {
  position: relative;

  display: flex !important;
  align-items: center !important;

  min-width: 0;
  min-height: 102px;

  gap: 12px !important;

  padding: 15px !important;

  color: var(--dark) !important;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    ) !important;

  border:
    1px solid #d8e1ec !important;

  border-radius: 18px !important;

  box-shadow:
    0 6px 16px rgba(15, 23, 42, 0.045);

  cursor: pointer;

  text-align: left !important;

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.checkout-course-option:hover {
  transform: translateY(-3px);

  border-color:
    rgba(13, 110, 253, 0.42) !important;

  box-shadow:
    0 13px 28px rgba(13, 110, 253, 0.11);
}

.checkout-course-option.active,
.checkout-course-option[aria-checked="true"] {
  background:
    linear-gradient(
      145deg,
      #f5f9ff 0%,
      #e8f2ff 100%
    ) !important;

  border:
    2px solid var(--primary) !important;

  box-shadow:
    0 14px 30px rgba(13, 110, 253, 0.17),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.checkout-course-option.active::after,
.checkout-course-option[aria-checked="true"]::after {
  content: "\F26A";

  position: absolute;
  top: 9px;
  right: 9px;

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

  width: 23px;
  height: 23px;

  color: #ffffff;
  background: var(--primary);

  border-radius: 50%;

  box-shadow:
    0 5px 12px rgba(13, 110, 253, 0.24);

  font-family: "bootstrap-icons";
  font-size: 0.72rem;
  font-weight: 400;
}

.checkout-course-option-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 48px !important;

  width: 48px !important;
  height: 48px !important;

  color: var(--primary) !important;
  background: var(--primary-soft) !important;

  border:
    1px solid rgba(13, 110, 253, 0.11);

  border-radius: 14px !important;

  font-size: 1.22rem !important;

  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.checkout-course-option.active
.checkout-course-option-icon,
.checkout-course-option[aria-checked="true"]
.checkout-course-option-icon {
  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    ) !important;

  box-shadow:
    0 8px 18px rgba(13, 110, 253, 0.20);
}

.checkout-course-option-text {
  display: flex !important;
  flex-direction: column !important;

  min-width: 0;
}

.checkout-course-option-text strong {
  color: var(--dark) !important;

  font-size: 0.96rem !important;
  font-weight: 850;
  line-height: 1.2;
}

.checkout-course-option-text small {
  margin-top: 4px !important;

  color: var(--text-muted) !important;

  font-size: 0.7rem !important;
  line-height: 1.35;
}


/* ---------- Access slider ---------- */

.checkout-page .form-range {
  height: 10px;

  margin-top: 7px;
  margin-bottom: 12px;

  cursor: pointer;
}

.checkout-page .form-range::-webkit-slider-runnable-track {
  height: 8px;

  background:
    linear-gradient(
      90deg,
      #cfe2ff 0%,
      #e5eaf0 100%
    );

  border-radius: 999px;
}

.checkout-page .form-range::-webkit-slider-thumb {
  width: 23px;
  height: 23px;

  margin-top: -7px;

  background: var(--primary);

  border:
    4px solid #ffffff;

  border-radius: 50%;

  box-shadow:
    0 5px 14px rgba(13, 110, 253, 0.30);
}


/* ---------- Pricing panel ---------- */

.checkout-pricing-panel {
  margin-top: 22px;
  padding: 22px;

  background:
    linear-gradient(
      145deg,
      #f5f9ff 0%,
      #edf5ff 100%
    );

  border:
    1px solid rgba(13, 110, 253, 0.12);

  border-radius: 20px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.checkout-pricing-panel h3 {
  color: var(--dark);

  font-size: 1.8rem;
  font-weight: 900;

  letter-spacing: -0.04em;
}

.checkout-pricing-panel p {
  color: var(--text-muted);

  font-size: 0.78rem;
  font-weight: 650;
}

#selectedSaving {
  color: var(--success) !important;

  font-size: 0.9rem;
}


/* ---------- Main checkout button ---------- */

.checkout-actions {
  margin-top: 8px;
}

.checkout-actions .btn {
  width: 100%;
  min-height: 58px;

  border-radius: 16px;

  font-size: 1rem;
  font-weight: 800;

  box-shadow:
    0 14px 28px rgba(13, 110, 253, 0.22);
}


/* ---------- Summary ---------- */

.checkout-summary {
  position: sticky;
  top: 28px;
}

.summary-card {
  padding: 26px;

  border-radius: 24px;
}

.summary-card > h2 {
  margin-bottom: 20px;

  color: var(--dark);

  font-size: 1.35rem;
  font-weight: 850;

  letter-spacing: -0.035em;
}

.summary-course {
  display: flex;
  align-items: center;

  gap: 14px;

  padding: 15px;

  background:
    linear-gradient(
      145deg,
      #f5f9ff 0%,
      #edf5ff 100%
    );

  border:
    1px solid rgba(13, 110, 253, 0.11);

  border-radius: 18px;
}

.summary-course-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );

  border-radius: 14px;

  box-shadow:
    0 9px 20px rgba(13, 110, 253, 0.20);

  font-size: 1.2rem;
}

.summary-course h3 {
  margin: 0;

  color: var(--dark);

  font-size: 1rem;
  font-weight: 850;
}

.summary-course p {
  margin-top: 3px;
  margin-bottom: 0;

  color: var(--text-muted);

  font-size: 0.76rem;
}

.summary-card hr {
  margin: 22px 0;

  border-color: #e1e7ef;

  opacity: 1;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 9px 0;
}

.summary-line span {
  color: var(--text-muted);

  font-size: 0.84rem;
}

.summary-line strong {
  color: var(--dark);

  font-size: 0.85rem;
  font-weight: 750;

  text-align: right;
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

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

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--primary-deep),
      var(--primary)
    );

  border-radius: 17px;

  box-shadow:
    0 12px 26px rgba(13, 110, 253, 0.20);
}

.summary-total span {
  font-size: 0.82rem;
  font-weight: 750;
}

.summary-total strong {
  font-size: 1.55rem;
  font-weight: 900;
}

.summary-security {
  display: flex;
  align-items: flex-start;

  gap: 11px;

  margin-top: 18px;
  padding: 14px;

  color: var(--text-muted);
  background: #f7fafc;

  border:
    1px solid #e2e8f0;

  border-radius: 15px;
}

.summary-security > i {
  margin-top: 1px;

  color: var(--success);

  font-size: 1.1rem;
}

.summary-security strong {
  display: block;

  color: var(--dark);

  font-size: 0.78rem;
}

.summary-security p {
  margin-top: 3px;
  margin-bottom: 0;

  font-size: 0.7rem;
  line-height: 1.45;
}

.checkout-help {
  display: flex;
  align-items: flex-start;

  gap: 11px;

  margin-top: 16px;
  padding: 17px;

  border-radius: 18px;
}

.checkout-help > i {
  color: var(--primary);

  font-size: 1.08rem;
}

.checkout-help strong {
  display: block;

  color: var(--dark);

  font-size: 0.82rem;
}

.checkout-help p {
  margin-top: 3px;
  margin-bottom: 0;

  color: var(--text-muted);

  font-size: 0.72rem;
  line-height: 1.5;
}


/* ---------- Footer ---------- */

.checkout-footer {
  padding: 24px 0;

  color: var(--text-light);
  background:
    rgba(255, 255, 255, 0.72);

  border-top:
    1px solid rgba(203, 213, 225, 0.72);

  text-align: center;

  font-size: 0.78rem;
}


/* ---------- Tablet ---------- */

@media (max-width: 991.98px) {

  .checkout-main {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .checkout-summary {
    position: static;
    top: auto;
  }

}


/* ---------- Mobile ---------- */

@media (max-width: 767.98px) {

  body.checkout-page {
    padding-bottom: 0;
  }

  .checkout-header-inner {
    min-height: 70px;
  }

  .checkout-logo {
    width: 44px;
    height: 44px;
  }

  .checkout-brand strong {
    font-size: 0.9rem;
  }

  .checkout-brand small {
    font-size: 0.65rem;
  }

  .checkout-security span {
    display: none;
  }

  .checkout-security {
    width: 40px;
    height: 40px;

    padding: 0;

    justify-content: center;
  }

  .checkout-main {
    padding-top: 26px;
    padding-bottom: 44px;
  }

  .checkout-intro {
    margin-bottom: 25px;
  }

  .checkout-intro h1 {
    font-size: 2rem;
  }

  .checkout-intro > p {
    font-size: 0.92rem;
  }

  .checkout-card,
  .summary-card {
    padding: 20px;

    border-radius: 20px;
  }

  .checkout-card-heading {
    gap: 12px;
  }

  .checkout-step {
    flex-basis: 38px;

    width: 38px;
    height: 38px;
  }

  .checkout-card-heading h2 {
    font-size: 1.22rem;
  }

  .checkout-course-options {
    grid-template-columns: 1fr !important;
  }

  .checkout-course-option {
    min-height: 82px;

    padding: 13px !important;
  }

  .checkout-course-option-icon {
    flex-basis: 46px !important;

    width: 46px !important;
    height: 46px !important;
  }

  .checkout-pricing-panel {
    padding: 18px 14px;
  }

  .checkout-pricing-panel h3 {
    font-size: 1.55rem;
  }

}


/* ---------- Very small mobile ---------- */

@media (max-width: 420px) {

  .checkout-card {
    padding: 18px 15px;
  }

  .checkout-pricing-panel .row {
    row-gap: 18px !important;
  }

  .checkout-pricing-panel .col-md-4 {
    width: 100%;
  }

}