*,
*::before,
*::after {
    box-sizing: border-box;
}

body.payment-page .payment-page-cards .card0.highlight {
    padding-top: 36px;
}

/* ===========================
   PAYMENT PAGE
=========================== */

body.payment-page {
    background: #070707;
}

body.payment-page .payment-page-shell {
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    margin: auto;
    padding: 30px 20px 50px;
    background: #111;
    border-left: 1px solid rgba(255,107,0,.15);
    border-right: 1px solid rgba(255,107,0,.15);
}

body.payment-page .payment-page-header{
    display:flex;
    justify-content:flex-end;
    margin-bottom:25px;
}

body.payment-page .payment-page-back {
    background:#ffd700;
    color:#000;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    margin-top: 10px;
}

body.payment-page .payment-page-title{
    color:#fff;
    text-align:center;
    font-size:28px;
    margin-bottom:35px;
    line-height:1.4;
}

/* ===========================
   PAYMENT CARDS
=========================== */

body.payment-page .payment-page-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    width:100%;

    max-width:1000px;

    margin:0 auto 0px;

    padding:0;
    /*height: 153px;*/
}

body.payment-page .payment-plan-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:center;
    gap: 8px;

    align-items:center;

    width:100%;

    min-height:unset;

    padding:16px 14px;

    border-radius:18px;

    background:#181818;

    border:1px solid rgba(255,107,0,.2);

    box-sizing:border-box;

    cursor:pointer;

    transition:.3s;
}

body.payment-page .payment-plan-card:hover{

    transform:translateY(-5px);

    border-color:#ff6b00;
}

body.payment-page .payment-plan-card.is-selected{

    border:2px solid #ff6b00;

    box-shadow:0 0 20px rgba(255,107,0,.35);
}

body.payment-page .payment-plan-card h3{

    margin:0;

    font-size:22px;

    color:#fff;

    text-align:center;

    line-height:1.4;
}

body.payment-page .payment-plan-card h1{

    margin:8px 0;

    font-size:40px;

    color:#fff;
}

body.payment-page .payment-plan-card h1 span{

    font-size:16px;
}

body.payment-page .payment-plan-card .sub{

    color:#bbb;

    text-align:center;

    margin-bottom:8px;

    line-height:1.5;
}

body.payment-page .payment-select-btn{

    width:100%;

    margin-top:auto;

    padding:13px;

    border:none;

    border-radius:8px;

    background:#ff6b00;

    color:#111;

    font-weight:700;

    cursor:pointer;
}

/* ===========================
   CHECKOUT SECTION
=========================== */






/* ===========================
   MOBILE
=========================== */

/*@media (max-width:600px){*/

/*body.payment-page .payment-page-shell{*/

/*padding:20px 15px 40px;*/

/*}*/

/*body.payment-page .payment-page-title{*/

/*font-size:22px;*/

/*}*/

/*body.payment-page .payment-page-cards{*/

/*grid-template-columns:1fr;*/

/*gap:20px;*/

/*}*/

/*body.payment-page .payment-plan-card{*/

/*min-height:auto;*/

/*padding:22px 18px;*/

/*}*/

/*body.payment-page .payment-plan-card h1{*/

/*font-size:34px;*/

/*}*/


/*body.payment-page .qr-frame{*/

/*width:220px;*/

/*}*/

/*}*/


/* 🔥 DARK FIERY THEME — black background, orange accents */
:root {
    color-scheme: dark;
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --bg-page: #000000;
    --heading-color: #ffffff;
    --text-primary: #e8e8e8;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --border-color: rgba(255, 107, 0, 0.18);
    --border-solid: #2a2a2a;
    --nav-bg: rgba(18, 18, 18, 0.94);
    --card-bg: #141414;
    --input-bg: #1a1a1a;
    --accent-color: #ff6b00;
    --accent-hover: #ff8533;
    --accent-soft: rgba(255, 107, 0, 0.14);
    --accent-glow: rgba(255, 107, 0, 0.45);
    --highlight-color: #ff9500;
    --gradient-start: #ff6b00;
    --gradient-end: #ffb347;
    --accent-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c33 50%, #ffb347 100%);
    --banner-gradient: linear-gradient(90deg, #cc5500 0%, #ff6b00 45%, #ff9500 100%);
    --up-color: #22c55e;
    --down-color: #ef4444;
    --up-color-glow: #4ade80;
    --down-color-glow: #f87171;
    --up-color-border: #22c55e;
    --down-color-border: #ef4444;
    --btn-text: #0a0a0a;
    --btn-text-on-dark: #ffffff;
    --star-color: #ffb347;
    --border-alt: rgba(255, 107, 0, 0.28);
    --muted-text: #a3a3a3;
    --overlay-bg: rgba(0, 0, 0, 0.82);
    --shadow-soft: rgba(0, 0, 0, 0.4);
    --shadow-medium: rgba(255, 107, 0, 0.2);
    --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 107, 0, 0.06);
    --shadow-card-hover: 0 20px 48px rgba(255, 107, 0, 0.22), 0 8px 20px rgba(0, 0, 0, 0.5);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg-page);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* font-family: "Mont", sans-serif; */
}

/* Links */
a {
    color: var(--accent-color);
    transition: color 150ms ease;
}

a:hover, a:focus {
    color: var(--accent-hover);
    text-decoration: none;
}

/* Buttons */
button, .btn, input[type="submit"], .login-popup-primary {
    background: var(--accent-gradient);
    color: var(--btn-text);
    border: none;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:hover, .btn:hover, input[type="submit"]:hover, .login-popup-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--accent-glow);
}

button.secondary, .btn.secondary, .login-popup-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Form controls */
input, textarea, select {
    background: var(--input-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-solid);
    transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

/* Navigation, cards and common surfaces */
nav, header, footer, .card, .login-popup, .contact-form-box {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}
.lion{
    margin-left: -3px;
    margin-top: 7px;
}
.navbar {
    border-radius: 0px;
}


.card {
    box-shadow: var(--shadow-card);
}

/* SVGs and icons */
svg, svg * {
    color: inherit;
    fill: currentColor;
    stroke: currentColor;
}


/* ✨ ANIMATIONS ✨ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineHover {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 22px var(--accent-glow);
    }
    50% {
        box-shadow: 0 12px 36px rgba(255, 107, 0, 0.55);
    }
}

@keyframes fireGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.08);
    }
}

@keyframes scrollFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-fade.visible {
    animation: scrollFadeIn 0.6s ease-out forwards;
}

.benefits-section,
.benefits-section .card {
    opacity: 1;
    transform: none;
}


.candle-1 { animation-delay: 0.1s; }
.candle-2 { animation-delay: 0.2s; }
.candle-3 { animation-delay: 0.3s; }
.candle-4 { animation-delay: 0.4s; }
.candle-5 { animation-delay: 0.5s; }
.candle-6 { animation-delay: 0.6s; }
.candle-7 { animation-delay: 0.7s; }
.candle-8 { animation-delay: 0.8s; }
.candle-9 { animation-delay: 0.9s; }
.candle-10 { animation-delay: 1s; }
.candle-11 { animation-delay: 1.1s; }
.candle-12 { animation-delay: 1.2s; }
.candle-13 { animation-delay: 1.3s; }
.candle-14 { animation-delay: 1.4s; }
.candle-15 { animation-delay: 1.5s; }
.candle-16 { animation-delay: 1.6s; }
.candle-17 { animation-delay: 1.7s; }
.candle-18 { animation-delay: 1.8s; }
.candle-19 { animation-delay: 1.9s; }
.candle-20 { animation-delay: 2s; }




body.login-popup-open {
    overflow: hidden;
}

.login-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--overlay-bg);
    backdrop-filter: blur(8px);
}

.login-popup-overlay.show {
    display: flex;
}

.login-popup {
    position: relative;
    width: min(480px, 100%);
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    box-shadow: 0 24px 80px var(--shadow-medium);
    animation: loginPopupIn 0.28s ease-out both;
}

@keyframes loginPopupIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-alt);
    border-radius: 50%;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.login-popup-close:hover,
.login-popup-close:focus-visible {
    border-color: var(--accent-color);
    outline: none;
}

.login-popup-kicker {
    margin: 0 0 10px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.login-popup h2 {
    margin: 0 38px 14px 0;
    color: var(--heading-color);
    font-size: 30px;
    line-height: 1.18;
}

.login-popup-text {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.login-popup-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.login-popup-primary,
.login-popup-secondary {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 6px;
    font: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.login-popup-primary {
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    color: var(--btn-text);
}

.login-popup-secondary {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.login-popup-primary:hover,
.login-popup-primary:focus-visible,
.login-popup-secondary:hover,
.login-popup-secondary:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.top p {
    color: var(--btn-text);
    font-weight: 500;
    text-align: center;
    background: var(--banner-gradient);
    padding: 14px 12px;
    margin: 0;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

/* Logo: fixed outside navbar, top-left on all devices */
.floating-logo {
    position: fixed;
    top: 46px;
    left: 16px;
    z-index: 1002;
    display: flex;
    align-items: center;
    height: 72px;
}

.floating-logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    margin-top: 91px;
    margin-left: -22px;
}

@media (max-width: 768px) {
    .floating-logo {
        top: 48px;
        left: 12px;
        height: 50px;
    }
    .floating-logo img {
        height: 53px;
        margin-top: 10px;
        margin-left: -9px;
    }
}

p {
    font-size: 14px;
    line-height: 1.6;
    /* letter-spacing: 0.07px; */
    /* text-align: left; */
}

.navbar {
    position: fixed;
    top: 46px; /* Flush against banner bottom */
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    z-index: 1001;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    box-sizing: border-box;
    padding: 12px 22px 12px 130px;

    background: var(--nav-bg);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);

    border: none;
    border-radius: 0;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.logo img {
    display: block;
    max-width: 160px;
    max-height: 55px;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(17px, 7.5vw, 54px);
    margin: 0 auto;
    flex-wrap: nowrap;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: clamp(0.86rem, 1.15vw, 1rem);
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    position: relative;
    white-space: nowrap;
}

.nav-links a:not(.join-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.join-btn):hover::after {
    width: 100%;
}

/* Active nav link highlight - Full background pill effect */
.nav-links a.active:not(.join-btn) {
    color: var(--btn-text) !important;
    background: var(--accent-gradient);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: 0 4px 12px var(--accent-glow);
    transition: all 0.3s ease;
}

.nav-links a.active:not(.join-btn)::after {
    display: none;
}

.join-btn {
    padding: 12px 24px;
    border: none;
    background: var(--accent-gradient) !important;
    color: var(--btn-text) !important;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-size: clamp(0.86rem, 1.15vw, 1rem) !important;
    margin-left: 0;
    box-shadow: 0 4px 14px var(--accent-glow);
    font-weight: 600;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
    animation: glowPulse 1.2s ease-in-out;
}

.content {
    color: var(--heading-color);
    font-family: "Poppins", sans-serif;
    white-space:nowrap;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 22% auto 0;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.8s ease-out;
}

.hero-video-section .video-highlights span {
    font-size: clamp(2rem, 2.6vw, 3.2rem);
}
/* Ensure hero clears fixed navbar on smaller screens */
@media (max-width: 1024px) {
    .content {
        margin-top: 28%;
    }
}

@media (max-width: 420px) {
    .content {
        margin-top: 34%;
    }
}

.content strong {
    display: block;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
}

.content .content-line {
    color: #ffffff;
    /* white-space: nowrap; */
}

.content .confidence-word {
    color: orangered;
}

.content-note {
    display: inline-block;
    /* color: #191970; */
    margin: 22px auto 0;
    padding: 10px 18px;
    border-radius: 6px;
    /* background: #fff; */
    color: var-secondary(--text-secondary);
    font-size: 18px;
    font-weight: normal;
    line-height: 1.35;
    text-wrap: balance;
    
}

/* Force "other mathematics calculation" to new line on desktop only */
.note-break {
    display: inline;
}
@media (min-width:1025px){

    .card0{
        max-width:315px;
    }

}

@media (min-width: 768px) {
    .note-break {
        display: block;
    }
  

    .card0{
        width:100%;
        max-width:420px;
        min-height:390px;
        padding:20px 16px;
    }

    .card0 h3{
        font-size:20px;
    }

    .card0 h1{
        font-size:30px;
    }
}

@media (min-width: 1024px) {
    .content strong {
        white-space: normal;
    }

    .content .content-line {
        white-space: nowrap;
    }

    .card0{
        flex:1 1 320px;
        max-width:340px;
    }
}

.element {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 107, 0, 0.65));
}


.timeline-card {
    position: relative;
    z-index: 2;
}

.hero-video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.video {
    flex: 0 1 56%;
    max-width: 670px;
    position: relative;
    width: 100%;
    margin-right: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16/9;
}

.home-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block; */
    /* border-radius: 20px; */
    margin-left: 20px;
}

.video-highlights {
    position: absolute;
    left: clamp(420px, 63vw, 850px);
    top: 50%;
    flex: 0 0 auto;
    min-width: clamp(150px, 18vw, 220px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    transform: translateY(-50%);
}

.video-highlights span {
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-28px);
    animation: highlightFadeLeft 0.75s ease forwards;
}

.video-highlights span:nth-child(1) {
    animation-delay: 0.15s;
    background: linear-gradient(180deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-highlights span:nth-child(2) {
    animation-delay: 0.35s;
    background: linear-gradient(180deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-highlights span:nth-child(3) {
    animation-delay: 0.55s;
    background: linear-gradient(180deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust{
    text-align: center;

}


@keyframes highlightFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.para {
    max-width: 1100px;
    width: 100%;
    margin: 2rem auto 0;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify ;
    animation: slideInUp 0.9s ease-out 0.2s both;
    font-size: 18px;
    font-weight: normal;
} 


.para p {
    color: orangered;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.para > p:first-child {
    max-width: 1050px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: smaller;
    line-height: 1.45;
}


.para a {
    color: var(--btn-text);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(16px, 3vw, 20px);
    background: var(--accent-gradient);
    padding: 15px 40px;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 20px var(--accent-glow);
    font-family: "Poppins", sans-serif;
    display: inline-block;
    margin: 20px auto 0;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.para a:hover {
    transform: translateY(-2px);
    animation: glowPulse 1.2s ease-in-out;
}

.para .con {
    color: var(--text-primary);
    font-size: 18px;
    text-align: center;
    margin: 40px auto 0;
    font-family: "Poppins", sans-serif;
}


.marquee-wrapper {
  --marquee-gap: clamp(10px, 2.5vw, 48px);
  --marquee-duration: 24s;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-primary);
    padding: 40px 0;
    margin-bottom: 8%;
}

/* 🔥 Fade edges (left + right blur effect) */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: min(15vw, 80px);    /* 👈 your requirement */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* scrolling track */
.marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: scroll var(--marquee-duration) linear infinite;
    will-change: transform;
    align-items: center;
    transform: translateZ(0);
}

.marquee-set {
    display: flex;
    flex: 0 0 auto;
    gap: var(--marquee-gap);
    padding-right: var(--marquee-gap);
}

/* Fallback for browsers that don't support flex gap */
@supports not (gap: 1rem) {
    .marquee-set .item {
        margin-right: var(--marquee-gap);
    }
    .marquee-set .item:last-child {
        margin-right: 0;
    }
}

/* each item */
.marquee-set .item {
    flex: 0 0 auto;
    min-width: clamp(120px, 18vw, 220px);
    text-align: center;
    color: var(--heading-color);
}
/* NUMBER */
.marquee-set .item h2 {
    font-size: clamp(24px, 3.8vw, 44px);
    color: var(--heading-color);
    margin: 0;
    /* 🔥 remove default margin */
    line-height: 1.05;
    /* tighten spacing */
    white-space: nowrap;
    overflow-wrap: normal;
}

/* TEXT */
.marquee-set .item p {
    font-size: clamp(12px, 1.6vw, 18px);
    color: var(--text-primary);
    margin: 5px 0 0 0;
    font-family: "Montserrat", sans-serif;
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
    /* 🔥 small gap only */
}

/* animation */
@keyframes scroll {
    from{
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.benefits-section {
    padding: 20px 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.08) 35%, transparent 100%);
}

.benefits strong {
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    display: block;
    margin-top: 10%;
    font-size: clamp(2rem, 5vw, 70px);
    text-align: center;
    padding: 0 20px;
    letter-spacing: -0.02em;
}

.benefits span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(255, 107, 0, 0.55));
}

/* GRID (2 cards per row) */
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
    column-gap: 16px;
    margin: 15px auto 0;
    padding: 0 20px;
    max-width: 1200px;
    box-sizing: border-box;
}

/* 5th card — sits in col 1 only, col 2 stays empty */
.container .card:last-child:nth-child(odd) {
    grid-column: 1 / 2;
    width: 100%;
}

/* CARD DESIGN */
.benefits-section .card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 170px;
    animation: slideInUp 0.6s ease-out;
    box-shadow: var(--shadow-card);
}

/* Benefit card photos */
.benefits-section .card img {
    width: 170px;
    height: 170px;
    flex: 0 0 170px;
    padding: 10px;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    display: block;
    align-self: center;
    border-radius: 0;
    transition: transform 0.35s ease;
    /* background: #000; */
}

.benefits-section .card > div {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.card:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.2);
}

/* TEXT */
.card h3 {
    font-family: "Montserrat", sans-serif;
    color: var(--heading-color);
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.55;
}

/* ── TABLET: 2 cols, image top + text bottom ── */
@media (max-width: 1024px) {
    .benefits-section .card {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .benefits-section .card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2);
        object-fit: contain;
        object-position: center;
        /* background: #000; */
    }

    .benefits-section .card > div {
        align-items: center;
        padding: 14px 16px;
        text-align: center;
    }

    /* last odd card stays col 1, col 2 empty */
    .benefits-section .container .card:last-child:nth-child(odd) {
        grid-column: 1 / 2;
    }
}

/* ── MOBILE: 1 col, image top + text bottom ── */
@media (max-width: 600px) {
    .benefits-section .container {
        grid-template-columns: 1fr;
    }

    .benefits-section .card {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .benefits-section .card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2);
        object-fit: contain;
        object-position: center;
        /* background: #000; */
    }

    .benefits-section .card > div {
        align-items: center;
        padding: 16px;
        text-align: center;
    }

    .benefits-section .card h3 {
        font-size: 20px;
    }

    .benefits-section .card p {
        font-size: 15px;
    }

    /* on single col, last card is just full width naturally */
    .benefits-section .container .card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* Card hover */
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: var(--shadow-card-hover);
}

/* 🔥 FIRE BORDER EFFECT */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* SHOW BORDER ON HOVER */
.card:hover::before {
    opacity: 1;
}


.spot {
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    margin-bottom: 150px;
    position: relative;
    z-index: 2;
}

.spot a {
    color: var(--btn-text);
    font-weight: 600;
    font-size: clamp(16px, 3vw, 20px);
    background: var(--accent-gradient);
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    padding: 12px 37px;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 20px var(--accent-glow);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.spot a:hover {
    animation: glowPulse 1s ease-in-out;
}

.process-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-page) 100%);
}

.progress-container {
    max-width: 1100px;
    margin: auto;
}

.title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    max-width: 1100px;
    margin-inline: auto;
    font-weight: 700;
    text-align: center;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 500;
    margin: 32px 10px 21px;
    font-family: "Montserrat", sans-serif;
    top: 13px;
}

.timeline {
    position: relative;
    padding-left: 60px;
    margin: 0 auto;
    max-width: 1000px;
}

/* vertical line */
.progress-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 8px;
    height: auto;
    background: var(--border-solid);
    border-radius: 10px;
}

.progress {
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: height 0.3s ease;
    border-radius: 10px;
    
}

/* cards */
.card1 {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.card1 .number {
    flex-shrink: 0;
    align-self: flex-start;
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

/* big number */
.number {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 500;
    background: linear-gradient(var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left !important;
}

a,
button {
    max-width: 100%;
}

.price-btn,
.cta-btn,
.help-btn,
.submit-btn {
    word-wrap: break-word;
}
/* text */
.progress-content h2 {
    margin: 0;
    font-size: 30px;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    text-align: left;
}

.progress-content p {
    color: var(--text-secondary);
    font-family: "Montserrat", sans-serif;
    font-size: 150%;
    text-align: left;
}

.progress-spot {
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
}

.progress-spot a {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.progress-para p {
    color: var(--text-primary);
    margin-top: 30px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
}


.pricing,
.pricing-section {
    overflow: visible;
}

.pricing-visual {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(180px, 1fr);
    align-items: center;
    gap: clamp(20px, 4vw, 50px);
    max-width: 1000px;
    margin: 0 auto 20px;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
    gap: clamp(34px, 6vw, 84px);
    width: min(100%, 1050px);
    margin: 20px auto 0;
}

.pricing-image {
    text-align: center;
    margin: 0;
    max-width: none;
    padding: 0;
    box-sizing: border-box;
    background: #000;
    border-radius: clamp(25px, 4vw, 40px);
    overflow: hidden;
}

.pricing-image img.climb {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: clamp(25px, 4vw, 40px) !important;
    display: block;
    margin: 0 auto;
    background: transparent;
    box-sizing: border-box;
}

.pricing-words {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    min-width: 0;
}

.pricing-words span {
    background: linear-gradient(180deg, #ff6b00 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 2.6vw, 3.2rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
    padding-bottom: 4px;
}

.climb {
    border-radius: clamp(20px, 3vw, 40px) !important;
}

/* Laptop view only - reduce image size */
@media (min-width: 769px) and (max-width: 1440px) {
    .pricing-visual {
        width: min(100%, 1050px);
    }

    .pricing-image img.climb {
        max-height: none;
        width: 100%;
        max-width: none;
        margin: 0;
        object-fit: contain;
        border-radius: clamp(25px, 4vw, 40px) !important;
    }
}

@media (max-width: 768px) {
    .pricing-visual {
        grid-template-columns: 1fr;
        gap: 24px;
        width: min(100%, 620px);
    }

    .pricing-image {
        aspect-ratio: auto;
        padding: 0 12px;
    }

    .pricing-image img.climb {
        height: auto;
        max-height: 280px;
        object-fit: contain;
        border-radius: clamp(25px, 4vw, 40px) !important;
    }

    .pricing-words {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 26px;
    }

    .pricing-words span {
        font-size: clamp(1.35rem, 5vw, 2rem);
    }
}

@media (max-width: 600px) {
    .pricing-visual {
        gap: 18px;
    }

    .pricing-image {
        padding: 0 12px;
        margin-top: 10px;
        /* border-radius: 15px; */
    }
    .pricing-image img.climb {
        max-height: 200px;
        object-fit: contain;
        border-radius: clamp(25px, 4vw, 40px) !important;
    }

    .pricing-words {
        gap: 10px 18px;
    }

    .pricing-words span {
        font-size: clamp(1.05rem, 5.5vw, 1.45rem);
    }
}

.pricing-section .title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    white-space: normal; /* allow wrapping to prevent horizontal scroll */
    font-size: clamp(1.0rem, 4.2vw, 3.5rem);
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    position: relative;
}
/* Removed scroll hint and let title wrap to fit smaller screens */

/* ===============================
   PAYMENT PLAN CARDS
================================= */

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 100px;
}

body.home-page .pricing-cards .card0 {
    position: relative;
    flex: 1 1 300px;
    max-width: 381px;
    min-height: 430px;
    padding: 22px 18px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 20px;
    background: linear-gradient(160deg,#1c1c1c 0%,#141414 60%,#101010 100%);
    border:1px solid var(--border-color);
    box-shadow: var(--shadow-card);

    transition: .3s;
}


@media (max-width: 600px) {
    .pricing-cards {
        flex-wrap: wrap;
        gap: 50px;
        padding: 40px 12px 10px;
    }

    .card0 {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 28px 18px;
    }
}

body.home-page .pricing-cards .card0:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.card0 h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    color: var(--heading-color);
    text-align: center;
    line-height: 1.35;
}

.card0 h1 {
    font-size: 34px;
    margin-bottom: 8px;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    text-align: center;
    line-height: 1.3;
}

.card0 h1 span {
    font-size: 18px;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
}

.sub {
    color: var(--text-secondary);
    margin-bottom: 18px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    /* font-size: clamp(0.95rem, 1.6vw, 1.05rem); */
    font-size: normal;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

ul li {
    margin: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 36px;
    padding-right: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1rem);
    line-height: 1.5;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gradient);
}

ul li::after {
    content: "✓";
    position: absolute;
    left: 5px;
    top: 2px;
    font-size: 14px;
    color: var(--btn-text);
    font-weight: bold;
}

/* .popular {
    border: 1px solid #ff6a00;
} */

.highlight {
    border: 2px solid transparent;
    background: linear-gradient(#141414, #141414) padding-box, var(--accent-gradient) border-box;
    box-shadow: var(--shadow-card-hover);
}

/* Badge fixed */
body.home-page .pricing-cards .plan-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    box-shadow: 0 6px 16px var(--accent-glow);
    color: var(--btn-text);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    text-align: center;
    line-height: 1.1;
    z-index: 20;
}

.plan-badge small {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
}

.best-value {
    padding: 10px 35px;
}

.price-btn,
.cta-btn,
.help-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: none;
    background: var(--accent-gradient);
    color: var(--btn-text) !important;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-size: clamp(14px, 2.6vw, 18px);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    box-shadow: 0 6px 18px var(--accent-glow);
    text-decoration: none;
    word-wrap: break-word;
}
.progress-spot a
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 60px;
    border: none;
    background: var(--accent-gradient);
    color: var(--btn-text) !important;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-size: clamp(14px, 2.6vw, 18px);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    box-shadow: 0 6px 18px var(--accent-glow);
    text-decoration: none;
    word-wrap: break-word;
}

.price-btn {
    margin-top: auto;
    width: 100%;
    min-width: unset;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    font-size: 15px;
}

.price-btn:hover,
.cta-btn:hover,
.help-btn:hover,
.progress-spot a:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--accent-glow);
    color: var(--btn-text) !important;
}

.cta-btn{
    
    width: clamp(280px, 90%, 422px);
    max-width: 54%;
    height: 57px;
}
.help-btn {
    width: clamp(280px, 90%, 355px);
    max-width: 54%;
    height: 57px;
}


/* PROOF / TESTIMONIALS SECTION */

.proof-section {
    background: var(--bg-primary);
    padding: 0px 20px 20px;
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
    margin-top: 30px;
}

.proof-container {
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
}

.proof-title {
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 700;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    margin: 0 0 25px;
    letter-spacing: normal;
}

.proof-title span,
.cta-title span,
.help-title span,
.faq-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: "Montserrat", sans-serif;
}


.proof-title span {
    font-family: "Montserrat", sans-serif;
}

.proof-subtitle {
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.55;
    margin: 0 0 55px;
    font-weight: 500;
}

.proof-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    text-align: left;
}

.proof-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 38px 26px 35px;
    min-height: 445px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.proof-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.proof-user img,
.discord-avatar {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.discord-avatar {
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-avatar span {
    color: var(--btn-text);
    font-size: 34px;
    line-height: 1;
}

.proof-user h3 {
    color: var(--heading-color);
    font-size: 28px;
    line-height: 1;
    margin: 0;
    font-weight: 800;
}

.proof-user p {
    color: var(--text-secondary);
    font-size: 22px;
    line-height: 1;
    margin: 4px 0 0;
    font-weight: 400;
}

.stars {
    color: var(--star-color);
    font-size: 27px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
}

.proof-text {
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
    text-align: justify;
}

/* CTA SECTION */

.cta-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-page) 100%);
    padding: 80px 20px 100px;
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 700;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    margin: 0 0 22px;
    letter-spacing: normal;
}

.cta-title span {
    font-family: "Montserrat", sans-serif;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 500;
    margin: 0 auto 45px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

/* FAQ SECTION */

.faq-section {
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-tertiary) 100%);
    padding: 40px 20px 90px;
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    font-weight: 800;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    margin: 0 0 45px;
    letter-spacing: -2px;
}

/* Small-screen adjustments for very narrow devices */
@media (max-width: 420px) {
    .cta-title {
        font-size: clamp(1.6rem, 6vw, 2.6rem);
        line-height: 1.08;
    }

    .faq-title {
        font-size: clamp(1.6rem, 6vw, 2.8rem);
        line-height: 1.06;
    }

    .title {
        font-size: clamp(1.5rem, 5.5vw, 2.6rem);
    }

    .cta-subtitle,
    .help-subtitle,
    .proof-subtitle,
    .progress-para p,
    .subtitle {
        font-size: 18px;
    }
}

.faq-list {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.faq-item {
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

/* .faq-item:hover {
} */

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 25px 24px;
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    border-bottom: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.faq-item summary::after,
.faq-item summary::before {
    display: none !important;
}

.faq-item summary span {
    border: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.faq-item summary span::after,
.faq-item summary span::before {
    display: none !important;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
    padding: 0 58px 25px 24px;
    /* border-top: none; */
}

.faq-item p strong {
    color: var(--text-primary);
    font-weight: 800;
}

/* FAQ ICON */

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--bg-primary);
    position: relative;
    transition: 0.3s ease;
}

.faq-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 48%;
    width: 9px;
    height: 9px;
    border-right: 5px solid var(--text-primary);
    border-bottom: 5px solid var(--text-primary);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.3s ease;
}

.faq-item[open] .faq-icon {
}

.faq-item[open] .faq-icon::before {
    transform: translate(-50%, -60%) rotate(45deg);
}

.faq-item[open] summary {
    padding-bottom: 20px;
    border-bottom: none !important;
    border: none !important;
}


.help-section {
    background: var(--bg-secondary);
    padding: 80px 20px 100px;
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.help-container {
    max-width: 1300px;
    margin: 0 auto;
}

.help-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 700;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
    margin: 0 0 22px;
    letter-spacing: normal;
}

.help-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.55;
    margin: 0 auto 38px;
    font-weight: 400;
    text-align: justify;
}

.footer {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    text-align: center;
    padding: 9px 20px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    border-top: 1px solid var(--border-solid);
    margin-top: 100px;
}

.footer p {
    margin: 0;
}

/* Footer Trust Section */
.footer-trust h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 5px 0;
    color: var(--heading-color);
    font-weight: 600;
}

.footer-trust h2 span {
    color: var(--accent-color);
}

.footer-trust .footer-subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Footer Telegram Link */
.footer-telegram {
    margin: 25px 0;
    overflow: visible;
}

.footer-telegram p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
}

.footer-telegram a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-telegram a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Footer Divider */
.footer-divider {
    width: 100vw !important;
    height: 1px;
    background: var(--border-solid);
    margin: 20px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* Footer Legal */
.footer-legal p {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--text-muted);
    margin: 15px 0;
}

/* Footer Copyright */
.footer-copyright p {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--text-muted);
    margin-top: 15px;
}
   

html {
    scroll-behavior: smooth;
}

#benefits {
    scroll-margin-top: 200px; /* adjust based on navbar height */
}

#process {
    scroll-margin-top: 200px; /* adjust based on navbar height */
}

#pricing {
    scroll-margin-top: 200px; /* adjust based on navbar height */
}

#testimonials {
    scroll-margin-top: 200px; /* adjust based on navbar height */
}

#faq {
    scroll-margin-top: 200px; /* adjust based on navbar height */
}

#contact-section {
    scroll-margin-top: 200px; /* adjust based on navbar height */
}

.contact-section {
   
    background: var(--bg-primary);
    padding: 80px 20px 100px;
}


.contact-container {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
}

.contact-subtitle {
    font-size: 19px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto 45px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.contact-form-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-solid);
    border-radius: 24px;
    padding: 35px 26px 40px;
    text-align: left;
    width: 70%;
    margin: 0 auto;
    overflow: hidden;
}

.contact-form-box label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
    font-family: "Montserrat", sans-serif;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 26px;
    border-radius: 16px;
    border: 1px solid var(--border-solid);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    outline: none;
    box-sizing: border-box;
}

.contact-form-box textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--accent-color);
}

.submit-btn {
    display: block;
    margin: 10px auto 0;
    background: var(--accent-color);
    color: var(--btn-text);
    border: none;
    padding: 18px 94px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: "Montserrat", sans-serif;
    word-wrap: break-word;
}

.form-message {
    min-height: 22px;
    margin: 0px 0 0;
    color: var(--muted-text);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    text-align: center;
}

.form-message.success {
    color: var(--up-color);
}

.form-message.error {
    color: var(--accent-color);
}

.disclaimer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 60px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclaimer .title {
    font-size: 50px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.disclaimer p {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: left;
    background: var(--bg-primary);
    padding: 38px 42px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .disclaimer p {
        padding: 24px 20px;
        font-size: 15px;
    }
    .disclaimer .title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .disclaimer {
        padding: 40px 16px;
    }
    .disclaimer p {
        padding: 18px 16px;
        font-size: 13px;
        border-left: 3px solid var(--accent-color);
    }
    .disclaimer .title {
        font-size: 24px;
    }
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 34px;
    color: var(--heading-color);
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2000;
    line-height: 1;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.top {
    z-index: 1001;                /* stays ABOVE mobile menu */
}
/* SHOW MENU */
.mobile-menu.active {
    transform: translateY(0);
}

/* TOP BAR IN MENU */
.mobile-top {
    position: 20px;
    top: 57px;
    
    right: 20px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-logo {
    height: 117px;
}

#close-menu{
    font-size: 32px;
    color: var(--heading-color);
    cursor: pointer;
    display: block;
    z-index: 9999;
    position: relative;
}

/* LINKS */
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.mobile-links a {
    color: var(--heading-color);
    font-size: 20px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.mobile-links a {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
}

.mobile-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-links a:nth-child(2) { animation-delay: 0.2s; }
.mobile-links a:nth-child(3) { animation-delay: 0.3s; }
.mobile-links a:nth-child(4) { animation-delay: 0.4s; }
.mobile-links a:nth-child(5) { animation-delay: 0.5s; }
.mobile-links a:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .navbar {
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        padding: 12px 16px 12px 100px;
        top: 46px;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 auto;
        flex-wrap: nowrap;
        justify-content: center;
        flex: 1;
    }
    .logo img {
        max-width: 62px;
    }
    .join-btn {
        padding: 10px 16px;
        font-size: 0.88rem !important;
    }
    .content {
        margin-top: 13rem;
        font-size: clamp(2rem, 3.8vw, 3.2rem);
    }
    .para {
        margin-top: 0rem;
    }
    .para p {
        font-size: 0.98rem;
    }
    /* .para > p:first-child {
        font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    } */
    .para a {
        padding: 12px 27px;
        width: auto;
        display: inline-block;
        white-space: nowrap;
    }
    .card {
        flex-direction: row;
        text-align: left;
    }
    .card img {
        width: 140px;
        flex: 0 0 140px;
    }
    .benefits strong {
        font-size: clamp(2.5rem, 4vw, 3.75rem);
    }
    .title {
        font-size: clamp(1.8rem, 3.2vw, 3rem);
    }
    .card1 {
        width: 100%;
    }
    .progress-para p {
        text-align: center;
    }
    .progress-spot {
        margin-left: auto;
        margin-right: auto;
    }
    .progress-spot a {
        display: inline-block;
        white-space: nowrap;
    }
    .card0 {
        width: clamp(280px, 85%, 450px);
    }
    .proof-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    .cta-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
    .faq-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
    .help-title {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
    .help-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .timeline {
    position: relative;
    padding-left: 72px;
}
    .hero-video-section {
        flex-direction: column;
        gap: 25px;
        padding: 0 16px;
    }
    .video {
      border: none !important;
      outline: none !important;
      box-shadow: none !important; 
    }
    .video,
    .video-highlights {
        flex: unset;
        width: 100%;
    }
    .video {
        aspect-ratio: 16/9;
        min-height: unset;
    }
    .video-highlights {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .video-highlights span {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .plan-badge.best-value {
        top: 12px;
    }
}


.timeline-card {
    position: relative;
    z-index: 2;
     width: calc(100% - 20px);
    margin-left: 10px;
}

@media (max-width: 768px) {
    .navbar {
        left: 0;
        right: auto;
        transform: none;
        width: 100%;
        top: 46px;
        padding: 6px 14px 6px 66px;
        box-sizing: border-box;
        border-radius: 0;
        overflow: hidden;
        overflow-x: hidden;
    }

    .logo img {
        max-width: 65px;
    }

    .join-btn {
        padding: 10px 18px;
        margin-left: 40px;
    }

    .content {
        width: 100%;
        margin-top: 14rem;
        font-size: clamp(1.85rem, 4.5vw, 3rem);
        padding: 0 20px;
        box-sizing: border-box;
    }

    .video {
        width: 100%;
        min-height: unset;
        margin: 1.5rem auto 0;
        padding: 0;
        box-sizing: border-box;
    }

    .para {
        width: 100%;
        margin: 1.5rem auto 0;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .para p {
        font-size: 0.96rem;
    }
    .para > p:first-child {
        font-size: clamp(1.1rem, 4.2vw, 1.45rem);
        line-height: 1.5;
    }

    .para a {
        display: inline-block;
        padding: 10px 24px;
        margin: 1rem auto 0;
        width: auto;
        text-align: center;
        white-space: nowrap;
        font-size: 16px;
    }

    .para .con {
        font-size: 0.95rem;
    }

    .container {
        grid-template-columns: repeat(2, 1fr);
        margin: 15px auto 0;
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
        gap: 14px;
        text-align: center;
        /* font-size: medium; */
    }

    .card {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 0;
        min-height: unset;
    }

    .card img {
        width: 100%;
        height: 120px;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2);
        border-radius: 0;
    }

    .card > div {
        padding: 12px 14px;
        align-items: center;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 18px;
    }

    .container .card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0;
        width: 100%;
    }

    .benefits strong {
        font-size: 3.75rem;
        display: block;
        margin-left: 0;
    }

    .title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .subtitle {
        font-size: 19px;
    }

    .timeline {
        margin-left: 0;
        padding-left: 30px;
    }


    .progress-para p {
        margin-left: 0;
        font-size: 1.5rem;
        text-align: center;
    }

    .progress-spot {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .progress-spot a {
        font-size: 18px;
        padding: 12px 35px;
        display: inline-block;
        white-space: nowrap;
    }

    .pricing-section .title {
        margin-bottom: 0;
        white-space: normal;
    }

    .pricing-section .subtitle {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .pricing-cards {
        padding: 40px 20px 10px;
    }

    .card0 {
        width: clamp(280px, 90%, 400px);
    }

    .proof-title {
        font-size: clamp(1.6rem, 4.2vw, 3.5rem);
    }

    .proof-subtitle {
        font-size: 19px;
    }

    .proof-cards {
        grid-template-columns:repeat(2, 1fr);
        gap: 20px;
    }

    .cta-title {
        font-size: clamp(1.6rem, 4.2vw, 3.5rem);
    }

    .cta-subtitle {
        font-size: 18px;
        text-align: center;
    }

    .faq-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .faq-item {
        width: 100%;
        margin-left: 0;
    }

    .faq-item summary {
        padding: 15px 20px;
        font-size: clamp(16px, 3vw, 20px);
    }

    .faq-item p {
        padding: 0 20px 20px 20px;
        font-size: 16px;
    }

    .submit-btn {
        margin: 10px auto 10px;
    }

    .help-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .help-subtitle {
        font-size: 0.95rem;
    }

    .help-btn {
        width: 100%;
        max-width: 54%;
    }

    .contact-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-form-box {
        width: 78%;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .disclaimer {
        margin-left: 0;
        margin-right: 0;
    }
}


@media only screen and (max-width: 575px) {
    .navbar {
        left: 0;
        transform: none;
        top: 66px;
        border-radius: 0;
        width: 100%;
        padding: 10px 12px 10px 66px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .floating-logo {
        top: 66px;
    }

    .content {
        width: 100%;
        margin-top: 12rem;
        font-size: clamp(1.35rem, 5.5vw, 2.1rem);
        line-height: 1.2;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .video {
        width: 100%;
        min-height: unset;
        margin: 1rem auto 0;
        padding: 0;
        box-sizing: border-box;
    }

    #bg-video {
        top: 0;
    }

    .para p {
        font-size: 0.9rem;
        margin-top: 0;
    }
/* 
    .para > p:first-child {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        line-height: 1.5;
    } */

    .para a {
        display: inline-block;
        width: auto;
        max-width: 280px;
        margin: 1rem auto 0;
        padding: 12px 20px;
        font-size: 16px;
        text-align: justify;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .marquee-wrapper {
        padding: 30px 0;
    }

    .container {
        grid-template-columns: 1fr;
        margin: 15px auto 0;
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
        gap: 12px;
    }

    .container .card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    .benefits strong {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-left: 0;
        text-align: center;
    }

    .card {
        width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 0;
        gap: 0;
        min-height: 100px;
    }

    .card img {
        width: 100px;
        flex: 0 0 100px;
        height: auto;
        border-right: 1px solid rgba(255, 107, 0, 0.2);
        border-bottom: none;
        border-radius: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .card > div {
        padding: 12px 14px;
        align-items: flex-start;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 15px;
    }

    .process-section {
        width: 100%;
        padding: 40px 15px;
    }




    .title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        text-align: center;
        margin-bottom: 15px;
    }

    .subtitle {
        font-size: 18px;
        padding: 0 15px;
    }

    .progress-para p {
        margin-left: 0;
        text-align: justify;
        padding: 0 15px;
    }

    .progress-spot {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    .progress-spot a {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-block;
        white-space: nowrap;
    }

    .pricing-section .title {
        font-size: clamp(0.5rem, 6vw, 2rem);
        margin-bottom: 0;
        white-space: normal;
    }

    .pricing-section .subtitle {
        font-size: 14px;
        margin-bottom: 15px;
        padding: 0 01px;
    }

    .pricing-cards {
        padding: 30px 15px 10px;
        gap: 20px;
    }

    .card0 {
        width: 100%;
        max-width: 350px;
        min-width: 0;
        padding: 30px 20px 20px;
    }

    .card0 h3 {
        font-size: 10px;
    }

    .card0 h1 {
        font-size: 40px;
    }

    .sub {
        font-size: 14px;
    }

    ul li {
        font-size: 14px;
        padding-left: 30px;
    }

    .plan-badge {
        font-size: 14px;
        padding: 8px 20px;
    }

    .proof-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
    }

    .proof-subtitle {
        font-size: 14px;
        padding: 0 15px;
        text-align: justify;
    }

    .proof-cards {
        grid-template-columns:repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .proof-card {
        padding: 25px 15px 20px;
    }

    .proof-user h3 {
        font-size: 20px;
    }

    .proof-user p {
        font-size: 16px;
    }

    .proof-text {
        font-size: 14px;
    }

    .cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
    }

    .cta-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 260px;
        height: 50px;
        font-size: 16px;
    }

    .faq-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .faq-list {
        padding: 0 15px;
        max-width: 100%;
    }

    .faq-item {
        width: 100%;
        margin-left: 0;
    }

    .faq-item summary {
        padding: 15px 15px;
        font-size: clamp(14px, 4vw, 16px);
        min-height: 60px;
    }

    .faq-item p {
        padding: 0 15px 20px 15px;
        font-size: 14px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .help-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
    }

    .help-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .help-btn {
        width: 100%;
        max-width: 50%;
        height: 50px;
        font-size: 16px;
    }

    .contact-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
    }

     .marquee-set .item {
        /* flex: 0 0 auto; */
        min-width: clamp(90px, 22vw, 140px);
    }

    .contact-subtitle {
        font-size: 18px;
        padding: 0 0px;
    }

    .contact-form-box {
        width: 100%;
        margin: 0 auto;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .contact-form-box label {
        font-size: 16px;
        margin-top: 0;
    }

    .contact-form-box input,
    .contact-form-box textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 16px;
        margin: 15px auto 0;
    }

    .disclaimer {
        padding: 30px 15px;
    }

    .disclaimer .title {
        font-size: 20px;
    }

    .disclaimer p {
        font-size: 13px;
        padding: 20px;
    }
    .timeline {
    padding-left: 72px;
    position: relative;
    }

    .progress-line {
    display: block;
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
    background: var(--border-solid);
    border-radius: 10px;
    }

    .progress {
    width: 100%;
    background: var(--accent-color);
    border-radius: 10px;
    }
}
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 520px) {
    .login-popup-overlay {
        padding: 16px;
    }

    .login-popup {
        padding: 28px 22px 22px;
    }

    .login-popup h2 {
        font-size: 24px;
    }

    .login-popup-actions {
        flex-direction: column;
    }

    .login-popup-primary,
    .login-popup-secondary {
        width: 100%;
    }
}

.terms-page {
    min-height: 100vh;
    background: var(--bg-primary);
}

.terms-shell {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0;
}

.terms-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
}

.terms-logo img {
    width: 92px;
    height: auto;
}

.terms-panel {
    padding: 36px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    box-shadow: 0 24px 80px var(--shadow-medium);
}

.terms-kicker {
    margin: 0 0 10px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.terms-panel h1 {
    margin: 0;
    color: var(--heading-color);
    font-size: 36px;
    line-height: 1.15;
}

.terms-intro {
    margin: 14px 0 28px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.terms-content {
    display: grid;
    gap: 18px;
    max-height: 420px;
    overflow-y: auto;
    padding: 22px;
    border: 1px solid var(--border-solid);
    border-radius: 8px;
    background: var(--input-bg);
}

.terms-content h2 {
    margin: 0 0 6px;
    color: var(--heading-color);
    font-size: 18px;
}

.terms-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.terms-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 24px 0;
    color: var(--text-primary);
    line-height: 1.5;
    cursor: pointer;
}

.terms-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-color);
}

.terms-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.terms-primary,
.terms-secondary {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 6px;
    font: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.terms-primary {
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    color: var(--btn-text);
    cursor: pointer;
}

.terms-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.terms-secondary {
    border: 1px solid var(--border-alt);
    color: var(--text-primary);
}

body.details-popup-open {
    overflow: hidden;
}

.details-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--overlay-bg);
    backdrop-filter: blur(8px);
}

.details-popup-overlay.show {
    display: flex;
}

.details-popup {
    position: relative;
    width: min(560px, 100%);
    padding: 34px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    box-shadow: 0 24px 80px var(--shadow-medium);
    animation: loginPopupIn 0.28s ease-out both;
}

.details-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-alt);
    border-radius: 50%;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.details-popup-close:hover,
.details-popup-close:focus-visible {
    border-color: var(--accent-color);
    outline: none;
}

.details-kicker {
    margin: 0 0 10px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.details-popup h2 {
    margin: 0 42px 24px 0;
    color: var(--heading-color);
    font-size: 30px;
    line-height: 1.2;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.details-grid label {
    display: grid;
    gap: 8px;
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
}

.details-grid input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border-solid);
    border-radius: 6px;
    background: var(--input-bg);
    color: var(--text-primary);
    font: inherit;
}

.details-grid input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.details-full {
    grid-column: 1 / -1;
}

.details-message {
    min-height: 22px;
    margin: 14px 0 0;
    color: var(--accent-color);
    font-size: 14px;
}

.details-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 16px;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    background: var(--accent-color);
    color: var(--btn-text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.details-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.payment-step {
    display: none;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border-solid);
}

.payment-step.show {
    display: block;
}

.details-popup.payment-ready .details-grid {
    display: none;
}

.details-popup.payment-popup {
    width: min(760px, 100%);
    max-height: min(92vh, 900px);
    overflow-y: auto;
}

.payment-intro {
    margin: 0 0 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.payment-plans-list {
    display: grid;
    gap: 14px;
}

.payment-plans-empty {
    margin: 0;
    padding: 16px;
    border: 1px dashed var(--border-alt);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.payment-plans-empty a {
    color: var(--accent-color);
    font-weight: 700;
}

.payment-plan-card {
    position: relative;
    width: 100%;
    padding: 18px 18px 16px;
    border: 2px solid var(--border-solid);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-plan-card:hover,
.payment-plan-card:focus-visible {
    border-color: var(--accent-color);
    outline: none;
    transform: translateY(-1px);
}

.payment-plan-card.is-selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, var(--bg-primary) 100%);
}

.payment-plan-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--btn-text);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.payment-plan-badge small {
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.95;
}

.payment-plan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.payment-plan-head h3 {
    margin: 0;
    color: var(--heading-color);
    font-size: 20px;
    line-height: 1.25;
}

.payment-plan-price {
    margin: 0;
    flex-shrink: 0;
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.payment-plan-price span {
    font-size: 12px;
    font-weight: 700;
}

.payment-plan-sub {
    margin: 0 0 8px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
}

.payment-plan-amount-line {
    margin: 0 0 10px;
    color: var(--heading-color);
    font-size: 14px;
}

.payment-plan-amount-line strong {
    color: var(--accent-color);
    font-size: 18px;
}

.payment-plan-features {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.55;
}

.payment-plan-features li + li {
    margin-top: 4px;
}

.payment-selected-bar {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
}

.payment-selected-amount {
    margin: 4px 0 6px;
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.payment-selected-plan {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.45;
}

.qr-plan-name {
    margin: 0 0 12px;
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 700;
}

.payment-summary {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
}

.payment-label {
    margin: 0 0 6px;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.payment-summary h3 {
    margin: 0 0 8px;
    color: var(--heading-color);
    font-size: 22px;
}

.payment-summary p:last-child {
    margin: 0;
    color: var(--text-secondary);
}

.pay-now-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 16px;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    background: var(--accent-color);
    color: var(--btn-text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.pay-now-btn:hover,
.pay-now-btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.continue-test-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
    border: 2px solid var(--text-secondary);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.continue-test-btn:hover,
.continue-test-btn:focus-visible {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--accent-soft);
    outline: none;
}

.continue-test-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}



/*.qr-panel.show {*/
/*    display: block;*/
/*}*/

.qr-frame {
    position: relative;
    display: grid;
    place-items: center;
    width: min(260px, 100%);
    min-height: 260px;
    margin: 12px auto;
    padding: 16px;
    border: 1px solid var(--border-solid);
    border-radius: 8px;
    background: var(--bg-secondary);
}

.qr-frame img {
    width: 100%;
    height: auto;
}

.qr-fallback {
    display: none;
    padding: 18px;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

.qr-fallback.show {
    display: block;
}

.qr-note {
    margin: 12px 0 16px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* UTR entry (payment reference) */
.utr-entry {
    margin-top: 12px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.utr-entry .utr-label {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 600;
    margin-top: 25px;
}
.utr-row {
    display: flex;
    gap: 8px;
}
.utr-input {
    flex: 1 1 auto;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-solid);
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 14px;
}
.utr-submit-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    background: #ffff00;
    color: #0a0a0a;
    font-weight: 700;
    cursor: pointer;
}
.utr-feedback {
    position: absolute;
    min-height: 18px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .utr-row {
        flex-direction: column;
    }
    .utr-submit-btn {
        width: 100%;
    }
}

.payment-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid var(--border-alt);
    border-radius: 6px;
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
}

/* PAYMENT PAGE (full pricing + checkout) */

body.payment-page {
    margin: 0;
    background: var(--bg-page);
    background-attachment: fixed;
    color: var(--text-primary);
}

.payment-page-shell {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    box-sizing: border-box;
}

.payment-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0 16px;
    flex-wrap: nowrap;
}

.payment-page-logo {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.payment-page-logo img {
    height: 44px;
    width: auto;
}

.payment-page-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    flex-shrink: 0;
    padding: 10px 16px;
    border: 1px solid var(--border-alt);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

.payment-page-back:hover,
.payment-page-back:focus-visible,
a.payment-page-back:hover,
a.payment-page-back:focus-visible {
    background: #FFD700 !important;   /* Keep yellow */
    color: #000 !important;           /* Keep black text */
    border-color: #FFD700 !important;
    box-shadow: none !important;
}

.payment-page-main {
    display: block;
    width: 100%;
}

.payment-page-pricing {
    width: 100%;
    padding: 8px 0 0;
    overflow: visible;
}

.payment-page-pricing .pricing-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.payment-page-notice {
    max-width: 720px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.08);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.55;
}

.payment-page-kicker {
    margin: 0 0 14px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.payment-page-title {
    margin: 0 auto 12px;
    max-width: 900px;
    line-height: 1.15;
}

.payment-page-subtitle {
    margin: 0 auto 40px;
    max-width: 720px;
    padding: 0 12px;
}


body.payment-page .payment-page-cards .card0 .sub {
    margin:0px auto 0;
    max-width: 100%;
    line-height: 1.5;
    text-align: center;
}

body.payment-page .payment-page-cards .card0 ul {
    text-align: left;
    margin-bottom: 28px;
}

body.payment-page .payment-page-cards .card0 ul li {
    font-size: clamp(14px, 1.35vw, 17px);
    margin: 16px 0;
    padding-left: 40px;
}

body.payment-page .payment-page-cards .card0.highlight {
    padding-top: 19px;
}
.payment-view-site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    padding: 12px 22px;
    border: 1px solid var(--accent-color);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.payment-view-site-btn:hover,
.payment-view-site-btn:focus-visible {
    background: var(--accent-color);
    color: var(--btn-text);
    transform: translateY(-1px);
    outline: none;
}



.card0.payment-plan-card {
    cursor: pointer;
}

/*.payment-checkout-inner {*/
/*    width: 100%;*/
/*    max-width: 1120px;*/
/*    margin: 0 auto;*/
/*    padding: clamp(24px, 4vw, 36px);*/
/*    border: 1px solid var(--border-color);*/
/*    border-radius: var(--radius-lg);*/
/*    background: rgba(20, 20, 20, 0.92);*/
/*    box-shadow: var(--shadow-card);*/
/*    box-sizing: border-box;*/
/*}*/

.payment-checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.checkout-topbar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.18);
    color: var(--accent-color);
    font-weight: 700;
}

.checkout-topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
    font-size: 16px;
}

/*.qr-panel {*/
/*    margin-top: 0;*/
/*}*/

.qr-frame {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.utr-entry {
    margin-top: 14px;
    text-align: left;
}

.utr-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.utr-input {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.utr-submit-btn {
    padding: 14px 18px;
    border-radius: 14px;
    border: none;
    background: var(--accent-color);
    color: var(--btn-text);
    font-weight: 700;
}

.banking-details-box {
    padding: 22px 22px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.banking-details-title {
    margin: 0 0 14px;
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 700;
}

.banking-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.banking-details-list li {
    margin-bottom: 10px;
}

.upload-receipt-row {
    margin-top: 24px;
}

.upload-receipt-btn {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 107, 0, 0.12);
    color: var(--accent-color);
    font-weight: 700;
}

.payment-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.payment-action-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.payment-timer {
    padding: 12px 16px;
    border-radius: 14px;
    /*background: rgba(255, 255, 255, 0.06);*/
    /*border: 1px solid rgba(255, 255, 255, 0.08);*/
}

.paid-confirm-btn {
    padding: 14px 24px;
    border-radius: 14px;
    border: none;
    background: var(--accent-color);
    color: #000;
    font-weight: 800;
}

.card0.payment-plan-card.is-selected {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), var(--shadow-card-hover);
}

.card0.payment-plan-card .payment-select-btn {
    pointer-events: auto;
    margin-top: auto;
    align-self: stretch;
}

/*.payment-checkout-inner {*/
/*    width: 100%;*/
/*    max-width: 520px;*/
/*    margin: 0 auto;*/
/*    padding: clamp(24px, 4vw, 36px);*/
/*    border: 1px solid var(--border-color);*/
/*    border-radius: var(--radius-lg);*/
/*    background: var(--bg-secondary);*/
/*    box-shadow: var(--shadow-card);*/
/*    text-align: center;*/
/*    box-sizing: border-box;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    min-height: 580px;*/
/*    padding-bottom: 32px;*/
/*}*/

.payment-checkout-inner h2 {
    margin: 0 0 8px;
    color: var(--heading-color);
    font-size: clamp(22px, 4vw, 28px);
}

.payment-checkout-hint {
    margin: 0 0 24px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.payment-checkout-inner .payment-selected-bar {
    margin-top: 0;
    text-align: center;
}

.payment-checkout-inner .payment-label {
    text-align: center;
}

.payment-action-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    order: 999;
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
}

.payment-timer {
    min-width: 72px;
    padding: 10px 12px;
    /*background: rgba(37, 99, 235, 0.08);*/
    /*border: 1px solid rgba(37, 99, 235, 0.18);*/
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
}

.paid-confirm-btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.paid-confirm-btn:hover,
.paid-confirm-btn:focus-visible {
    background: #1c4fd7;
}

.payment-checkout-inner .payment-selected-amount,
.payment-checkout-inner .payment-selected-plan {
    text-align: center;
}

.payment-checkout-inner .pay-now-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    box-sizing: border-box;
}

/*.payment-checkout-inner .qr-panel {*/
/*    text-align: center;*/
/*}*/

/*.payment-checkout-inner .qr-panel.show {*/
/*    display: block;*/
/*}*/

.payment-checkout-inner .qr-frame {
    margin-left: auto;
    margin-right: auto;
}

.payment-checkout-inner .payment-contact {
    margin: 0 auto;
}

@media (max-width: 1100px) and (min-width: 700px) {
    body.payment-page .payment-page-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }
    body.payment-page .payment-page-cards .card0.highlight {
        grid-column: 1 / -1;
        max-width: 480px;
        justify-self: center;
        width: 100%;
    }

    .payment-checkout-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 640px) {
    .payment-page-header {
        flex-wrap: nowrap;
        padding-top: 16px;
        gap: 12px;
    }

    .payment-page-back {
        width: auto;
        min-width: 0;
        max-width: 220px;
        flex-shrink: 0;
        text-align: center;
    }

    body.payment-page .payment-page-cards .card0 {
        padding: 18px 16px;
        /*min-height:165px;*/
    }

    body.payment-page .payment-page-cards .card0 ul li {
        font-size: 15px;
        padding-left: 36px;
    }
}

@media (max-width: 640px) {
    .terms-shell {
        width: min(100% - 24px, 980px);
        padding: 24px 0;
    }

    .terms-panel {
        padding: 24px 18px;
    }

    .terms-panel h1 {
        font-size: 28px;
    }

    .terms-content {
        max-height: 380px;
        padding: 18px;
    }

    .terms-primary,
    .terms-secondary {
        width: 100%;
    }

    .details-popup-overlay {
        padding: 16px;
    }

    .details-popup {
        padding: 28px 22px 22px;
    }

    .details-popup h2 {
        font-size: 24px;
    }

    .details-popup.payment-popup {
        padding: 24px 18px 18px;
    }

    .payment-plan-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-selected-amount {
        font-size: 24px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .qr-frame {
        min-height: 220px;
    }
}

/* Compact spacing pass: ensure hero clears fixed navbar by enforcing a minimum pixel offset */
.content {
    margin-top: max(clamp(7rem, 8vw, 9rem), 200px);
}

.content-note {
    margin-top: 16px;
    color: #ffffff;
}

.para {
    margin-top: 1.25rem;
}

.para p {
    margin-bottom: 28px;
}

.para a {
    margin-top: 8px;
}

.para .con {
    margin-top: 24px;
}

.marquee-wrapper {
    padding: 28px 0;
    margin-bottom: 3rem;
}


.benefits strong {
    margin-top: 3.75rem;
}

.container {
    margin-top: 10px;
    row-gap: 16px;
    column-gap: 16px;
}

.spot {
    margin-top: 28px;
    margin-bottom: 70px;
}

.process-section{
     padding-top: 0px;
    padding-bottom: 30px;
}
.cta-section,
.contact-section {
    padding-top: 56px;
    padding-bottom: 30px;
}
.help-section
{
    padding-top: 0px;
    padding-bottom: 30px;
}
.pricing-cards {
    gap: 28px;
    padding-top: 46px;
}

.card0 {
    padding: 15px 30px 36px;
}

ul {
    margin-bottom: 22px;
}

ul li {
    margin: 14px 0;
}

.proof-section {
    padding-bottom: 20px;
}

.proof-title {
    margin-top: 18px;
}

.proof-subtitle,
.cta-subtitle,
.help-subtitle,
.contact-subtitle {
    margin-bottom: 28px;
}

.proof-card,
.faq-item summary {
    padding-top: 20px;
    padding-bottom: 20px;
}

.faq-section {
    padding-top: 30px;
    padding-bottom: 0px;
}

.faq-title {
    margin-bottom: 28px;
}

.faq-item {
    margin-bottom: 12px;
}

.footer {
    margin-top: 0;
}

.contact-subtitle {
    line-height: 1.55;
}

.contact-form-box {
    padding-top: 28px;
    padding-bottom: 30px;
}

.contact-form-box input,
.contact-form-box textarea {
    margin-bottom: 18px;
}

footer {
    padding-top: 0px;
    padding-bottom: 5px;
}


@media (max-width: 768px) {
    .content {
        margin-top: max(10rem, 160px);
    }

    .video {
        min-height: unset;
        margin-top: 1rem;
    }

    .para {
        margin-top: 1rem;
    }

    .marquee-wrapper {
        padding: 25px 0;
        margin-bottom: 2rem;
        --marquee-duration: 18s;
        --marquee-gap: clamp(10px, 3vw, 24px);
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: min(16vw, 72px);
    }

    /* .marquee-track {
        animation-duration: 8.5s;
    } */

    .marquee-set {
        gap: var(--marquee-gap);
        padding-right: var(--marquee-gap);
    }

    .marquee-set .item h2 {
        font-size: clamp(20px, 4.8vw, 30px);
    }

    .marquee-set .item p {
        font-size: clamp(10px, 2.8vw, 14px);
    }

    .benefits strong {
        margin-top: 2rem;
    }

    .process-section{
        padding-top: 0px;
        padding-bottom: 44px;
    }
    .cta-section,
    .help-section,
    .contact-section {
        padding-top: 36px;
        padding-bottom: 44px;
    }

    .pricing-cards {
        padding-top: 30px;
        gap: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .content {
        margin-top: max(9rem, 140px);
    }

    .video {
        min-height: unset;
    }

    .para p {
        margin-bottom: 20px;
    }

    .card1 {
        margin-bottom: 20px;
    }

    .faq-title {
        margin-bottom: 20px;
    }

    .marquee-wrapper {
        padding: 14px 0;
        margin-bottom: 1.75rem;
        --marquee-duration: 16s;
        --marquee-gap: 12px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: min(12vw, 56px);
    }

    /* .marquee-track {
        animation-duration: 7.5s;
    } */

    .marquee-set {
        gap: var(--marquee-gap);
        padding-right: var(--marquee-gap);
    }

    /* .marquee-set .item {
        flex: 0 0 var(--marquee-item-width);
    } */

    .marquee-set .item h2 {
        font-size: clamp(18px, 4.8vw, 24px);
    }

    .marquee-set .item p {
        font-size: clamp(9px, 2.7vw, 12px);
    }
}

/* Extra small devices (320px - 375px) */
@media only screen and (max-width: 375px) {
    .marquee-wrapper {
        --marquee-gap: 10px;
    }

    .marquee-set .item h2 {
        font-size: clamp(17px, 4.7vw, 22px);
    }

    .marquee-set .item p {
        font-size: clamp(9px, 2.5vw, 12px);
    }
}

/* Small phones (376px - 420px) */
@media only screen and (min-width: 376px) and (max-width: 420px) {
    .marquee-wrapper {
        --marquee-gap: 12px;
    }

    .marquee-set .item h2 {
        font-size: clamp(18px, 4.8vw, 24px);
    }

    .marquee-set .item p {
        font-size: clamp(9px, 2.6vw, 13px);
    }
}

/* Regular phones (421px - 575px) */
@media only screen and (min-width: 421px) and (max-width: 575px) {
    .marquee-wrapper {
        --marquee-gap: 14px;
    }

    .marquee-set .item h2 {
        font-size: clamp(19px, 4.8vw, 26px);
    }

    .marquee-set .item p {
        font-size: clamp(10px, 2.9vw, 14px);
    }
}

/* Final responsive pass for homepage sections */
.content,
.hero-video-section,
.para,
.container,
.progress-container,
.pricing-cards,
.proof-cards,
.contact-container {
    width: min(100%, 1400px);
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}
.faq-list{
    width: min(100%, 1400px);
    max-width: 76%;
    margin-inline: auto;
    box-sizing: border-box;
}
.content {
    padding-inline: clamp(16px, 4vw, 32px);
    font-size: clamp(1.75rem, 5vw, 3.75rem);
    line-height: 1.12;
}

.content-note {
    max-width: 900px;
    font-size: clamp(1.3rem, 5vw, 1.125rem);
    line-height: 1.45;
}

.hero-video-section {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(150px, 1fr);
    align-items: center;
    gap: clamp(18px, 4vw, 50px);
    padding-inline: clamp(16px, 4vw, 24px);
}

.video {
    width: 100%;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    min-height: unset;
}

.video-highlights {
    min-width: 0;
    gap: clamp(12px, 3vw, 30px);
}

.video-highlights span {
    font-size: clamp(1.15rem, 3vw, 3rem);
    overflow-wrap: anywhere;
}

.para {
    padding-inline: clamp(16px, 4vw, 24px);
}

.para p,
.para > p:first-child {
    max-width: 1050px;
    font-size: clamp(0.95rem, 2.3vw, 1.1rem);
    line-height: 1.55;
}

.para a,
.spot a,
.progress-spot a {
    max-width: 100%;
    white-space: normal;
}

.progress-container {
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 24px);
}

.timeline {
    width: min(100%, 980px);
    margin-inline: auto;
    padding-left: 72px;
}

.progress-line {
    left: 18px;
}


.benefits strong {
    font-size: 3.75rem;
    line-height: 1.08;
}

.container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: clamp(16px, 4vw, 20px);
}

.benefits-section .card,
.benefits-section .card img {
    min-width: 0;
}

@media (max-width: 900px) {
    .hero-video-section {
        grid-template-columns: 1fr;
    }

    .video-highlights {
        flex-direction: row;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .content {
        margin-top: max(8rem, 132px);
        font-size: clamp(1.55rem, 8vw, 2.25rem);
    }

    .content-note {
        display: block;
        padding-inline: 0;
    }

    .hero-video-section {
        padding-inline: 14px;
    }

    .video,
    .home-video {
        border-radius: 14px;
        margin-left: 10px;
    }

    .para {
        margin-top: 1rem;
        padding-inline: 16px;
    }

    .para p,
    .para > p:first-child {
        font-size: clamp(0.92rem, 4vw, 1rem);
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .container .card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }

    .benefits-section .card {
        grid-template-columns: minmax(92px, 34vw) 1fr;
    }

    .benefits-section .card img {
        height: 80%;
        min-height: 116px;
    }

    .card h3 {
        font-size: 18px;
        line-height: 1.25;
    }

    .card p {
        font-size: clamp(0.78rem, 3.5vw, 0.9rem);
        line-height: 1.45;
    }

    .timeline {
        padding-left: 0;
    }

    .progress-line {
        display: none;
    }

}

@media (max-width: 380px) {
    .content {
        font-size: clamp(1.35rem, 8vw, 1.85rem);
        padding-inline: 12px;
    }

    .hero-video-section,
    .para,
    .container {
        padding-inline: 12px;
    }

    .benefits-section .card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-section .card img {
        height: 150px;
        min-height: 150px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    }

    .benefits-section .card > div {
        align-items: center;
    }
}

/* Site-wide responsive safety net */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    min-width: 0;
}

section,
.top,
.navbar,
.content,
.hero-video-section,
.para,
.marquee-wrapper,
.benefits-section,
.process-section,
.pricing,
.proof-section,
.cta-section,
.faq-section,
.help-section,
.contact-section,
.disclaimer,
.footer {
    max-width: 100%;
    box-sizing: border-box;
}

.content,
.para,
.benefits,
.container,
.progress-container,
.pricing-section,
.proof-container,
.cta-container,
.faq-container,
.help-container,
.contact-container {
    width: min(100%, 1200px);
    margin-inline: auto;
    box-sizing: border-box;
}

.title,
.subtitle,
.proof-title,
.proof-subtitle,
.cta-title,
.cta-subtitle,
.faq-title,
.help-title,
.help-subtitle,
.contact-title,
.contact-subtitle,
.disclaimer .title,
.disclaimer p {
    overflow-wrap: anywhere;
}

.nav-links,
.pricing-cards,
.proof-cards,
.login-popup-actions {
    min-width: 0;
}

.price-btn,
.join-btn,
.login-popup-primary,
.login-popup-secondary{
    max-width: 72%;
    white-space: normal;
    text-align: center;
}
.spot a{
    max-width: 75%;
    white-space: normal;
    text-align: center;
}
.submit-btn {
    max-width: 73%;
    white-space: normal;
    text-align: center;
    font-size: 18px;
}
.help-btn{
    max-width: 49%;
    white-space: normal;
    text-align: center;
}
.cta-btn{
    max-width: 73%;
    white-space: normal;
    text-align: center;
}

.progress-spot a{
    max-width: 75%;
    white-space: normal;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-items: center;
    overflow: visible;
    left: 10px;
}

.card0 {
    width: 100%;
    max-width: 380px;
}

.pricing-cards .plan-badge {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: calc(100% - 28px);
    text-align: center;
    white-space: normal;
}

.pricing-cards .plan-badge small {
    text-align: center;
}

.proof-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.proof-card {
    align-self: start;
    height: auto;
    min-height: auto;
}

.faq-item summary {
    overflow-wrap: anywhere;
}

/*@media (max-width: 1100px) {*/
/*    .pricing-cards,*/
/*    .proof-cards {*/
/*        grid-template-columns: repeat(2, minmax(0, 1fr));*/
/*    }*/

/*    .pricing-cards .card0:last-child,*/
/*    .proof-cards .proof-card:last-child {*/
/*        grid-column: 1 / -1;*/
/*        justify-self: center;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .top {
        padding-inline: 0px;
    }

    .navbar {
        width:100%;
        left: -5px;;
        right:1px;
        margin: 6px;
        transform: none;
        border-radius: 18px;
    }

    .content {
        margin-top: max(8.5rem, 140px);
        font-size: clamp(1.55rem, 7vw, 2.75rem);
    }

    .hero-video-section,
    .container,
    .progress-container,
    .pricing-section,
    .proof-container,
    .cta-container,
    .faq-container,
    .help-container,
    .contact-container {
        padding-inline: 16px;
    }

    .hero-video-section,
    .container,
    .pricing-cards,
    .proof-cards {
        grid-template-columns: 1fr;
    }

    .pricing-cards .card0:last-child,
    .proof-cards .proof-card:last-child {
        grid-column: auto;
    }

    .card0 {
        max-width: 520px;
    }

    .benefits-section .card {
        grid-template-columns: minmax(110px, 34vw) 1fr;
        text-align: left;
    }

    .benefits-section .card img {
        height: 100%;
        min-height: 130px;
        border-right: 1px solid rgba(255, 107, 0, 0.2);
        border-bottom: none;
    }

    .benefits-section .card > div {
        align-items: flex-start;
    }



    .progress-content p,
    .proof-text,
    .help-subtitle,
    .contact-container {
        text-align: left;
        text-align-last: auto;
    }
     .contact-subtitle {
        text-align: center;
        text-align-last: auto;
    }

    .faq-item summary {
        font-size: clamp(0rem, 3.5vw, 1.25rem);
        padding: 20px 18px;
        gap: 14px;
    }

    .faq-item p {
        font-size: clamp(0.92rem, 3.8vw, 1rem);
        padding: 0 18px 20px;
    }

    .contact-title,
    .help-title,
    .proof-title,
    .cta-title,
    .faq-title {
        letter-spacing: 0;
    }
}

@media (max-width: 520px) {
    .navbar {
        top: 32px;
        padding: 10px 12px 10px 66px;
    }

    .floating-logo {
        top: 32px;
    }

    .logo img {
        max-width: 58px;
    }

    .join-btn {
        padding: 9px 12px;
        font-size: 0.82rem !important;
    }

    .content {
        margin-top: max(7.5rem, 124px);
        padding-inline: 14px;
    }

    .content-note {
        font-size: clamp(0.82rem, 3.6vw, 0.95rem);
    }

    .video-highlights {
        gap: 10px;
    }

    .video-highlights span {
        font-size: clamp(1rem, 5vw, 1.25rem);
    }

    .benefits strong,
    .title,
    .proof-title,
    .cta-title,
    .faq-title,
    .help-title,
    .contact-title {
        font-size: clamp(1.55rem, 8vw, 2.25rem);
        line-height: 1.12;
    }

    .subtitle,
    .proof-subtitle,
    .cta-subtitle,
    .help-subtitle,
    .contact-subtitle,
    .progress-para p {
        font-size: clamp(0.92rem, 4vw, 1rem);
        line-height: 1.55;
    }

    .benefits-section .card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-section .card img {
        height: 170px;
        min-height: 170px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    }

    .benefits-section .card > div {
        align-items: center;
    }

    .process-section,
    .pricing,
    .proof-section,
    .cta-section,
    .faq-section,
    .help-section,
    .disclaimer {
        padding-inline: 12px;
    }
     .contact-section{
         padding-inline: 12px;
         padding-top: 0px;
         padding-bottom: 0px;
     }
    .card1,
    .card0,
    .proof-card,
    .faq-item,
    .contact-form-box {
        border-radius: 14px;
    }

    .card1,
    .card0,
    .proof-card {
        padding-inline: 16px;
    }

    .proof-user {
        align-items: flex-start;
    }

    .proof-user h3 {
        font-size: clamp(1rem, 5vw, 1.25rem);
    }

    .proof-user p {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }

    .contact-form-box {
        padding: 24px 16px;
    }

    .contact-form-box input,
    .contact-form-box textarea {
        font-size: 16px;
        padding: 14px 15px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 18px;
    }
}
 @media (max-width: 375px){
    .content-note-sub{
        font-size: 10px !important;
    }
}
@media (max-width: 360px) {
    .navbar {
        width:100%;
        left: -6px;
        right: 0px;
    }

    .join-btn {
        padding-inline: 10px;
    }

    .content,
    .hero-video-section,
    .para,
    .container,
    .progress-container,
    .proof-container,
    .cta-container,
    .faq-container,
    .help-container,
    .contact-container {
        padding-inline: 10px;
    }
    .pricing-section{
        padding-inline: 1px;
    }

    .benefits-section .card img {
        height: 145px;
        min-height: 145px;
    }
}

/* Solid fiery orange buttons */
.btn,
input[type="submit"],

.price-btn,
.cta-btn,
.help-btn,
.pay-now-btn,
.continue-test-btn,
.login-popup-primary,
.login-popup-secondary,
.progress-spot a,
.spot a,
.para a,
.submit-btn,
.card0.payment-plan-card .payment-select-btn {
    background: #ffff00 !important;
    background-image: none !important;
    color: #0a0a0a !important;
    border-color: #ffff00 !important;
    box-shadow: none !important;
}
.join-btn{
   background: #ff6b00 !important;
    background-image: none !important;
    color: #0a0a0a !important;
    border-color: #ff6b00 !important;
    box-shadow: none !important;
}
button{
     background: #ff6b00 !important;
    /*background-image: none !important;*/
    color: #0a0a0a !important;
    /*border-color: #ff6b00 !important;*/
    box-shadow: none !important;
}

button:hover,
button:focus-visible,
.btn:hover,
.btn:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible,
.join-btn:hover,
.join-btn:focus-visible,
.price-btn:hover,
.price-btn:focus-visible,
.cta-btn:hover,
.cta-btn:focus-visible,
.help-btn:hover,
.help-btn:focus-visible,
.pay-now-btn:hover,
.pay-now-btn:focus-visible,
.continue-test-btn:hover,
.continue-test-btn:focus-visible,
.login-popup-primary:hover,
.login-popup-primary:focus-visible,
.login-popup-secondary:hover,
.login-popup-secondary:focus-visible,
.progress-spot a:hover,
.progress-spot a:focus-visible,
.spot a:hover,
.spot a:focus-visible,
.para a:hover,
.para a:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible,
.card0.payment-plan-card .payment-select-btn:hover,
.card0.payment-plan-card .payment-select-btn:focus-visible {
    background: #ff6b00 !important;
    background-image: none !important;
    color: #0a0a0a !important;
    border-color: #ff6b00 !important;
    box-shadow: none !important;
    transform: none !important;
    animation: none !important;
}

.secure-cta,
.secure-cta:hover,
.secure-cta:focus-visible,
.price-btn,
.price-btn:hover,
.price-btn:focus-visible,
.help-btn,
.help-btn:hover,
.help-btn:focus-visible,
.submit-btn,
.submit-btn:hover,
.submit-btn:focus-visible,
.cta-btn,
.cta-btn:hover,
.cta-btn:focus-visible,
.pay-now-btn,
.pay-now-btn:hover,
.pay-now-btn:focus-visible {
    background: #FFFF00 !important;
    background-image: none !important;
    border-color: #FFFF00 !important;
    color: #0a0a0a !important;
}

/* Override: make mentorship select button hover yellow (site wants yellow) */
.card0.payment-plan-card .payment-select-btn:hover,
.card0.payment-plan-card .payment-select-btn:focus-visible {
    background: #ffff00 !important;
    background-image: none !important;
    color: #0a0a0a !important;
    border-color: #ffff00 !important;
    box-shadow: none !important;
}

.secure-cta:hover,
.secure-cta:focus-visible,
.price-btn:hover,
.price-btn:focus-visible,
.cta-btn:hover,
.cta-btn:focus-visible,
.help-btn:hover,
.help-btn:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible,
.progress-spot a:hover,
.progress-spot a:focus-visible,
.spot a:hover,
.spot a:focus-visible,
.para a:hover,
.para a:focus-visible,
.pay-now-btn:hover,
.pay-now-btn:focus-visible {
    background: #FFFF00 !important;
    background-image: none !important;
    border-color: #FFFF00 !important;
    color: #0a0a0a !important;
    box-shadow: none !important;
}

/* Hero note responsive wrapping */
.content {
    white-space: normal !important;
}

.content-note {
    display: block;
    width: min(100%, 900px);
    margin-inline: auto;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
}

.content-note strong {
    display: block;
    margin-bottom: 6px;
}

@media (max-width: 520px) {
    .content-note {
        width: 100%;
        font-size: clamp(0.78rem, 3.7vw, 0.95rem);
        line-height: 1.55;
    }
}

/* Climbing image corners (canonical across all devices) */
.pricing-image {
    --climbing-corner-radius: clamp(20px, 3vw, 40px);
}

.pricing-image img.climb,
img.climb {
    border-radius: clamp(25px, 4vw, 40px) !important;
    display: block;
}

/* Process cards (canonical) */
.process-section .timeline .card1 {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    justify-content: stretch;
    column-gap: 20px;
}

.process-section .timeline .card1 .number {
    align-self: start;
    margin: 0;
    line-height: 1;
    font-size: clamp(2rem, 4vw, 3.5rem);
    flex: 0 0 auto;
}

.process-section .timeline .card1 .progress-content {
    align-self: start;
    margin: 0;
    padding-top: 0;
    width: 100%;
    max-width: 760px;
}

.process-section .timeline .card1 .progress-content h2 {
    margin-top: 0;
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    line-height: 1.25;
    text-align: left;
}

.process-section .timeline .card1 .progress-content p {
    font-size: 19px;
    line-height: 1.65;
    text-align: left;
    text-align-last: auto;
}

@media (max-width: 640px) {
    .process-section .timeline .card1 .number {
        font-size: clamp(1.8rem, 10vw, 2.75rem);
    }

    .process-section .timeline .card1 .progress-content h2 {
        font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    }

    .process-section .timeline .card1 .progress-content p {
        font-size: 19px;
    }
}

/* Keep the benefits cards visually even. */
.benefits-section .container {
    align-items: stretch;
    grid-auto-rows: 1fr;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefits-section .container .card {
    height: 100%;
    min-height: 190px;
}

.benefits-section .container .card:last-child:nth-child(odd) {
    grid-column: 1 / 2;
    width: 100%;
    max-width: none;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-section .container .card {
        min-height: 0;
        height: auto;
    }
    body.payment-page .payment-qr-box{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    /*gap:20px;*/
}

body.payment-page .qr-panel{
    width:100%;
    display:flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
    margin-top: 0;
}

body.payment-page .utr-entry{
    width:100%;
    margin-top:20px;
}

body.payment-page .utr-entry input{
    width:100%;
}
body.payment-page .utr-entry button{
    width:50%;
    
}

body.payment-page .payment-status-note{
    text-align:center;
}
body.payment-page .payment-checkout-inner .qr-frame{
    width:220px;
    max-width:100%;
    margin:0 auto;
}
 /*body.payment-page #utr{*/
 /*       width:100%;*/
 /*       margin-top:15px;*/
 /*   }*/
body.payment-page .payment-note{
        text-align:center;
    }

    body.payment-page .payment-action-row{
        justify-content:center;
    }
}

@media (max-width: 520px) {
    .benefits-section .container {
        grid-auto-rows: auto;
    }

    .benefits-section .container .card {
        min-height: 0;
        height: auto;
    }
}

/* Keep every main section title in the same font as the pricing title. */
.benefits strong,
.title,
.proof-title,
.cta-title,
.faq-title,
.help-title,
.contact-title,
.disclaimer .title,
.benefits strong span,
.title span,
.proof-title span,
.cta-title span,
.faq-title span,
.help-title span,
.contact-title span,
.disclaimer .title span {
    font-family: "Montserrat", sans-serif;
}

.faq-title,
.help-title {
    font-size: clamp(1.6rem, 4.2vw, 3.5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: normal;
}

.cta-title {
    line-height: 0.95;
}



/* =============================================
   BENEFITS SECTION — RESPONSIVE OVERRIDES
   These rules are placed last to win all cascade conflicts
   ============================================= */

/* LAPTOP/DESKTOP (>1024px): image left, text right, 2 columns */
.benefits-section .container {
    grid-template-columns: repeat(2, 1fr) !important;
}
.benefits-section .card img {
    width: 170px !important;
    height: 170px !important;
    flex: 0 0 170px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    align-self: center !important;
    object-fit: contain !important;
    object-position: center !important;
    /* background: #000 !important; */
}

.benefits-section .container .card:last-child:nth-child(odd) {
    grid-column: 1 / 2 !important;
}

/* TABLET (601px–1024px): image top, text bottom, 2 columns */
@media (max-width: 1024px) {
    .benefits-section .container {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .benefits-section .card {
        flex-direction: column !important;
        height: auto !important;
    }

    .benefits-section .card img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        flex: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2) !important;
        object-fit: contain !important;
        object-position: center !important;
        /* background: #000 !important; */
    }

    .benefits-section .card > div {
        align-items: center !important;
        text-align: center !important;
        padding: 14px 16px !important;
    }

    .benefits-section .container .card:last-child:nth-child(odd) {
        grid-column: 1 / 2 !important;
    }
}

/* MOBILE (<=600px): image top, text bottom, 1 column */
@media (max-width: 600px) {
    .benefits-section .container {
        grid-template-columns: 1fr !important;
    }

    .benefits-section .card {
        flex-direction: column !important;
        height: auto !important;
    }

    .benefits-section .card img {
        width: clamp(140px, 45vw, 190px) !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        flex: none !important;
        margin: 0 auto !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 107, 0, 0.2) !important;
        object-fit: contain !important;
        object-position: center !important;
        /* background: #000 !important; */
    }

    .benefits-section .card > div {
        align-items: center !important;
        text-align: center !important;
        padding: 16px !important;
    }

    .benefits-section .card h3 {
        font-size: 17px !important;
    }

    .benefits-section .card p {
        font-size: 14px !important;
    }

    /* single column — last card just fills naturally */
    .benefits-section .container .card:last-child:nth-child(odd) {
        grid-column: 1 / -1 !important;
    }
}

/* ── MOBILE NAVBAR LOGO FIX ── */
@media (max-width: 600px) {
    .logo img {
        max-width: 48px;
        max-height: 38px;
    }

    .navbar {
        padding: 6px 0px 6px 66px;
    }
}

/* ── MOBILE TOP BANNER + NAVBAR POSITION FIX ── */
@media (max-width: 600px) {
    .top p {
        padding: 6px 12px;
        font-size: 0.72rem;
        letter-spacing: 0;
        white-space: normal;
        line-height: 1.4;
    }

    .navbar {
        top: 38px;
    }

    .floating-logo {
        top: 38px;
    }

    .logo img {
        max-width: 44px;
        max-height: 34px;
    }
}

/* ── MOBILE S (<=375px) ── */
@media (max-width: 375px) {
    .top p {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .navbar {
        top: 33px;
    }

    .floating-logo {
        top: 33px;
    }

    .floating-logo img {
        height: 59px;
        margin-left: -8px;
        margin-top: 9px;
    }

    .logo img {
        max-width: 36px;
        max-height: 28px;
    }
    .disclaimer-summary {
        padding: 14px 18px;
        /* width: 10px; */
    }
    .disclaimer-dropdown{
        width: auto;
    }

}

/* ── DISCLAIMER DROPDOWN ── */
.disclaimer {
    padding: 40px 0;
    background: var(--bg-secondary);
    display: block;
}

.disclaimer-dropdown {
    width: 54%;
    max-width: 100%;
    margin: 0;
    border: 1px solid var(--border-color);
    border-left: 0;
    border-right: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-primary);
    margin-left: 32px; /* moved slightly right */
    margin: 0 auto;

}


.disclaimer-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.disclaimer-summary::-webkit-details-marker {
    display: none;
}

.disclaimer-summary:hover {
    background: var(--bg-tertiary);
}

.disclaimer-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #ff2b2b;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
}

.disclaimer-icon {
    font-size: 14px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.disclaimer-dropdown[open] .disclaimer-icon {
    transform: rotate(180deg);
}

.disclaimer-content {
    padding: 0 24px 28px;
    border-top: 1px solid var(--border-color);
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 20px auto 0;
    text-align: left;
    background: none;
    padding: 0;
    border: none;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .disclaimer {
        padding: 34px 18px;
    }

    .disclaimer-dropdown {
        width: min(100%, 760px);
    }

    .disclaimer-summary {
        padding: 16px 22px;
    }

    .disclaimer-title {
        font-size: clamp(1.05rem, 2.8vw, 1.35rem);
    }

    .disclaimer-content {
        padding: 0 22px 24px;
    }

    .disclaimer-content p {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width: 600px) {
    .disclaimer {
        padding: 24px 12px;
    }

    .disclaimer-dropdown {
        width: 100%;
        border-radius: 10px;
    }

    .disclaimer-summary {
        padding: 14px 16px;
    }

    .disclaimer-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .disclaimer-content {
        padding: 0 16px 20px;
    }

    .disclaimer-content p {
        font-size: 12px;
        line-height: 1.65;
        margin-top: 16px;
        overflow-wrap: anywhere;
    }
}

/* ── TRUST SECTION ── */
.trust {
    background: var(--bg-primary);
    padding: 30px 0 30px;
    text-align: center;
    overflow: visible;
}

.trust > div {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust p {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.trust-advisory {
    width: min(100%, 760px);
    margin: 0px auto 0 !important;
    padding: 8px 16px;
    /* background: rgba(18, 18, 18, 0.82); */
    color: #740A03 !important;
    -webkit-text-fill-color: #740A03 !important;
    font-size: clamp(0.9rem, 1.7vw, 1.0rem) !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    overflow-wrap: anywhere;
}

.trust-divider {
    width: 100vw !important;
    height: 2px !important;
    background: rgba(255, 255, 255, 0.24) !important;
    margin: 20px 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.trust-telegram {
    white-space: nowrap !important;
    overflow: visible !important;
    display: inline-block !important;
    font-size: 19px !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.trust-telegram a {
    color: #2f82d8;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap !important;
    font-size: 12px;
}

.trust-telegram a:hover,
.trust-telegram a:focus-visible {
    color: #5ca8ff;
    text-decoration: underline;
}

.trust span {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 600px) {
    .trust {
        padding: 40px 10px;
    }

    .trust > div {
        padding: 0 4px;
    }

    .trust-telegram,
    .trust-advisory {
        /* padding-inline: px; */
        font-size: 10px !important;
    }

    .trust-telegram {
        white-space: nowrap;
        overflow: visible;
    }
}

@media (max-width: 380px) {
    .trust-large {
        font-size: 0.55rem;
    }

    .trust {
        padding: 0px 6px;
    }

    .trust > div {
        padding: 0 2px;
    }
}

/* ── PRICING CARD BADGES & HIGHLIGHTS ── */
.plan-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    min-width: 195px;
    min-height: 30px;
}

.plan-badge.starter {
    background: var(--accent-gradient);
    border: none;
    color: #000;
    border-radius: 999px;
    padding: 12px 19px;
    width: fit-content;
    margin: 0px auto 14px;
}

.plan-badge.most-popular {
    background: var(--accent-gradient);
    border: none;
    color: #000;
    border-radius: 999px;
    padding: 12px 19px;
    width: fit-content;
    margin: 0px auto 14px;
}

.plan-badge.best-value {
    background: var(--accent-gradient);
    border: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    border-radius: 999px;
    padding: 12px 19px;
    width: fit-content;
    margin: 0px auto 0px;
}

.plan-badge.best-value small {
    font-size: 11px;
    font-weight: 500;
    color: #000;
}

/* strikethrough title */
.card0 h3 s {
    text-decoration: line-through;
    text-decoration-color: var(--accent-color);
    color: var(--text-secondary);
}

/* yellow highlight sub text */
.highlight-sub {
    display: inline-block;
    /* background: #facc15; */
     color: var(--text-secondary)
    /* padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 1.5;
    text-align: center; */
}

/* ── PROOF SUBTITLE MATCHES PROOF TEXT SIZE ── */
.proof-subtitle {
    font-size: 19px !important;
    line-height: 1.55;
}
@media (max-width: 320px){
    .content-note-sub{
        font-size: 12px !important;
    }
}
@media (max-width: 575px) {
    .proof-subtitle {
        font-size: 14px !important;
    }
}

/* ── TRUST TEXT SIZES ── */
.trust p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.trust-large {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    -webkit-text-fill-color: #ffffff;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
    max-width: none;
}

.trust-main-line,
.trust-growth-line {
    box-sizing: border-box;
    max-width: 100%;
    padding-inline: 16px;
    white-space: nowrap;
    display: inline-block;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.trust-main-line {
    font-size: clamp(15px, 4.7vw, 18px);
    font-weight: 700;
}

.trust-growth-line {
    font-size: clamp(10px, 2.8vw, 15px);
    font-weight: 600;
}

.trust-small {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    font-weight: 400;
    color: var(--text-secondary);
    font-family: "Montserrat", sans-serif;
    -webkit-text-fill-color: var(--text-secondary);
}

.trust-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.growth p{
     font-size: clamp(0.55rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    -webkit-text-fill-color: #ffffff;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
    max-width: none;
}

/* ── TRUST HIGHLIGHT OVERRIDE (must be last) ── */
.trust-highlight {
    background: var(--accent-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* ── ACCENT HIGHLIGHT TEXT ── */
.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.45));
}

/* ── CONTENT NOTE TIGHT SPACING ── */
.content-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    color: #FFBF00;
    -webkit-text-fill-color: #FFBF00;
    line-height: 1.4;
    margin-bottom: 0;
}

.content-note-sub {
    display: block;
    font-size: 20px;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .content-note-sub {
        font-size: 12px !important;
        line-height: 1.45;
    }
}
/* ── HERO VIDEO SECTION GAP REDUCTION ── */
.hero-video-section {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .hero-video-section {
        margin-top: 0;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .hero-video-section {
        margin-top: 0;
        gap: 14px;
        padding: 0 12px;
    }

    .video {
        flex: 0 1 64%;
        margin-right: 0;
        min-width: 0;
    }

    .video-highlights {
        position: static;
        min-width: 90px;
        transform: none;
    }
}

/* ── SUBTITLE ALWAYS CENTRED ── */
.subtitle {
    text-align: center !important;
}

/* Responsive hero highlight alignment */
.video-highlights {
    left: clamp(420px, 63%, calc(100% - 220px));
}

@media (max-width: 600px) {
    .video-highlights {
        left: auto;
        position: static;
        transform: none;
    }
}

/* Final responsive hero video layout.
   Keep video and highlight text in the same layout flow so tablet/inspect widths do not break. */
.hero-video-section {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(150px, 1fr);
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
}

.hero-video-section .video {
    width: 100%;
    max-width: none;
    margin-right: 0;
}

.hero-video-section .video-highlights {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    transform: none;
    gap: clamp(18px, 3vw, 30px);
}

.hero-video-section .video-highlights span {
    font-size: clamp(2rem, 2.6vw, 3.2rem);
}

@media (max-width: 1024px) {
    .hero-video-section {
        grid-template-columns: minmax(0, 62%) minmax(120px, 1fr);
        gap: 18px;
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(20px, 2.7vw, 32px);
    }
}

@media (max-width: 640px) {
    .hero-video-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-video-section .video-highlights {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: clamp(12px, 4vw, 22px);
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(16px, 5vw, 22px);
    }
}

/* Stable hero video/highlight layout override */
.hero-video-section {
    display: grid !important;
    grid-template-columns: minmax(0, 58%) minmax(150px, 1fr) !important;
    align-items: center !important;
    gap: clamp(18px, 3vw, 40px) !important;
    overflow: hidden;
}

.hero-video-section .video {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
}

.hero-video-section .home-video {
    display: block;
    margin-left: 0px;
    margin-top: 10px;
}

.hero-video-section .video-highlights {
    position: static !important;
    left: auto !important;
    top: auto !important;
    min-width: 0 !important;
    transform: none !important;
    align-items: flex-start;
    gap: clamp(16px, 2.6vw, 28px) !important;
}

.hero-video-section .video-highlights span {
    font-size: clamp(22px, 3vw, 40px) !important;
    line-height: 1.15;
}

@media (max-width: 1024px) {
    .hero-video-section {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        overflow: visible;
    }

    .hero-video-section .video-highlights {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: clamp(14px, 4vw, 28px) !important;
        margin-top: 10px;
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(18px, 4vw, 30px) !important;
    }
}

@media (max-width: 520px) {
    .hero-video-section .video-highlights {
        gap: 12px !important;
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(15px, 4.8vw, 20px) !important;
    }
}

/* Keep the hero words in one straight line, aligned with the hero heading content. */
.hero-video-section .video-highlights {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: clamp(14px, 3vw, 34px) !important;
}

.hero-video-section .video-highlights span {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .hero-video-section .video-highlights {
        justify-content: flex-start !important;
    }
}

@media (max-width: 520px) {
    .hero-video-section {
        padding-inline: 0 !important;
    }

    .hero-video-section .video-highlights {
        padding-inline: 0 !important;
        gap: clamp(8px, 3vw, 12px) !important;
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(14px, 5.2vw, 19px) !important;
    }
}

/* Final hero highlight layout: show Simple, Powerful, Magical one-by-one. */
.hero-video-section {
    display: grid !important;
    grid-template-columns: minmax(0, 68%) minmax(150px, 1fr) !important;
    align-items: center !important;
    gap: clamp(0px, 0vw, 0px) !important;
    max-width: 1200px;
    padding-inline: clamp(16px, 3vw, 28px);
}

.hero-video-section .video {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.hero-video-section .video-highlights {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    min-width: 0 !important;
    gap: clamp(13px, 7.2vw, 28px) !important;
    transform: none !important;
}

.hero-video-section .video-highlights span {
    top: auto;
    display: block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(1.7rem, 3.0vw, 3.1rem) !important;
    line-height: 1.05;
}

@media (max-width: 900px) {
    .hero-video-section {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .hero-video-section .video-highlights {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: clamp(14px, 4vw, 28px) !important;
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(1.25rem, 5vw, 2rem) !important;
    }
}

@media (max-width: 430px) {
    .hero-video-section {
        padding-inline: 12px !important;
    }

    .hero-video-section .video-highlights {
        gap: 10px !important;
    }

    .hero-video-section .video-highlights span {
        font-size: clamp(1rem, 4.8vw, 1.25rem) !important;
    }
}

/* Move the old inline 35px label size into CSS and scale it safely on mobile. */
.video-highlights b,
.pricing-words b {
    display: inline-block;
    font-size: 35px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .video-highlights b,
    .pricing-words b {
        font-size: clamp(18px, 5vw, 35px);
    }
}

@media (max-width: 380px) {
    .video-highlights b,
    .pricing-words b {
        font-size: clamp(15px, 4.6vw, 18px);
    }
}

/* Benefit card paragraph size. */
.benefits-section .card p {
    font-size: 19px !important;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .benefits-section .card p {
        font-size: 15px !important;
    }
}

/* Compact FAQ boxes */
.faq-item {
    margin-bottom: 10px;
}

.faq-item summary {
    min-height: 54px;
    padding: 14px 20px !important;
}

.faq-item[open] summary {
    padding-bottom: 10px !important;
}

.faq-item p {
    padding: 0 20px 14px !important;
    line-height: 1.45;
}

@media (max-width: 575px) {
    .faq-list {
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
    }

    .faq-item summary {
        min-height: 48px;
        padding: 12px 14px !important;
    }

    .faq-item p {
        padding: 0 14px 12px !important;
    }
}

/* Final responsive disclaimer sizing. */
.disclaimer {
    padding: 40px 20px;
}

.disclaimer-dropdown {
    width: 57%;
    margin-inline: auto;
    border: 1px solid var(--border-color);
    border-left: 0;
    border-right: 0;
    border-radius: var(--radius-md);
}

.disclaimer-summary {
    min-height: 62px;
    padding: 18px 24px;
}

.disclaimer-content {
    padding: 0 24px 28px;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .disclaimer {
        padding: 34px 18px;
    }

    .disclaimer-dropdown {
        width: 70%;
    }

    .disclaimer-summary {
        min-height: 58px;
        padding: 16px 22px;
    }

    .disclaimer-content {
        padding: 0 22px 24px;
    }
}

@media (max-width: 768px) {
    .disclaimer {
        padding: 30px 15px;
    }

    .disclaimer-dropdown {
        width: 73%;
        border-radius: 10px;
    }

    .disclaimer-summary {
        min-height: 52px;
        padding: 14px 16px;
    }

    .disclaimer-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .disclaimer-content {
        padding: 0 16px 20px;
    }

    .disclaimer-content p {
        font-size: 12px;
        line-height: 1.65;
        margin-top: 16px;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 575px) {
    .disclaimer {
        padding-inline: 22px;
    }

    .disclaimer-dropdown {
        width: 98%;
    }
}

@media (max-width: 375px) {
    .disclaimer {
        padding-inline: 18px;
    }

    .disclaimer-summary {
        padding-inline: 14px;
    }
}
/* ---------------------------
   MOBILE RESPONSIVE
----------------------------*/

@media (max-width: 768px){

    .card0{
        width:100%;
        max-width:360px;
        min-height:380px;
    }

    .card0 h3{
        font-size:20px;
    }

    .card0 h1{
        font-size:30px;
    }
    .price-btn{
        width:100%;
        font-size:15px;
        padding:14px;
    }

}

@media (max-width:390px){

    .price-btn{
        font-size:14px;
        padding:12px 10px;
    }

}

@media (max-width:360px){

    .price-btn{
        font-size:13px;
        padding:11px 8px;
    }

}

/* Final payment-page override for the requested QR + bank-details layout. */
body.payment-page {
    background: #070707;
}

body.payment-page .payment-page-shell {
    max-width: 1439px;
    min-height: 100vh;
    padding: 3px 26px 34px;
    background: #111;
    border-left: 1px solid rgba(255, 107, 0, 0.18);
    border-right: 1px solid rgba(255, 107, 0, 0.18);
}

body.payment-page .payment-page-header {
    justify-content: flex-end;
    padding: 0 0 0px;
}



body.payment-page .payment-page-title {
    max-width: none;
    margin: 0 0px 0px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}



body.payment-page .payment-page-cards .card0 h3,
body.payment-page .payment-page-cards .payment-select-btn,
body.payment-page .payment-view-site-btn {
    display: none;
}


body.payment-page .payment-page-cards .card0 h1 span {
    font-size: 11px;
}



body.payment-page .payment-checkout-section{
    width:100%;
    padding:20px 0 0;
    background:transparent;
}

body.payment-page .payment-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.95fr);
    gap: 32px;
    align-items: stretch;
    max-width: 1000px;
    margin: 24px 2px 20px;
}

body.payment-page .payment-checkout-inner {
    max-width: none;
    min-height: 365px;
    padding: 40px 46px 28px;
    border: 1px solid rgba(82, 102, 132, 0.55);
    border-radius: 32px;
    background: #101010;
    box-shadow: none;
    text-align: left;
}

body.payment-page .payment-qr-box {
    display: grid;
    grid-template-columns: 270px minmax(0, 2fr);
    column-gap: 42px;
    align-items: center;
}

body.payment-page .payment-checkout-inner .qr-frame {
    width: 254px;
    max-width: 266px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
}

body.payment-page .payment-selected-bar {
    margin-top: 0;
    padding: 8px 12px;
    border: 0;
    border-radius: 4px;
    background: #050505;
    text-align: center;
}

body.payment-page .payment-label {
    margin-bottom: 0;
    color: #ff6b00;
    font-size: 8px;
}

body.payment-page .payment-selected-amount {
    margin: 0;
    font-size: 18px;
}

body.payment-page .payment-selected-plan {
    font-size: 9px;
}

body.payment-page .utr-entry {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.payment-page .utr-label {
    color: #9ca3af;
    font-size: 15px;
    font-weight: 600;
}

/*body.payment-page .qr-panel{*/
/*    width:100%;*/
/*    text-align:center;*/
/*}*/

body.payment-page .utr-row {
    display: block;
}

body.payment-page .utr-input {
    width: 100%;
    min-height: 43px;
    border-radius: 8px;
}

body.payment-page .payment-note {
    margin: 12px 0 0;
    color: #bcc4d6;
    font-size: 12px;
    text-align: center;
}

body.payment-page .payment-action-row {
    justify-content: flex-start;
    margin-top: 24px;
}

body.payment-page .payment-timer {
    /*background: #0b1220;*/
    border-color: rgba(82, 102, 132, 0.4);
    color: #fff;
}

body.payment-page .paid-confirm-btn {
    background: #ff6b00;
    color: #111;
    font-size: 11px;
}

body.payment-page .payment-bank-box {
    padding: 38px 62px;
}

body.payment-page .banking-option {
    display: flex;
    align-items: left;
    gap: 14px;
    margin-bottom: 0px;
}

body.payment-page .banking-option p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

body.payment-page .banking-check {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    background: #4a8aff;
    color: #14213d;
    font-size: 36px;
    font-weight: 800;
}

body.payment-page .banking-details-box {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.payment-page .banking-details-title,
body.payment-page .banking-details-list {
    color: #fff;
    font-size: 16px;
}

body.payment-page .banking-details-list {
    line-height: 1.35;
}

body.payment-page .banking-details-list li {
    margin: 0;
}

body.payment-page .upload-receipt-row {
    margin-top: 30px;
}

body.payment-page .upload-receipt-btn {
    width: 100%;
    min-height: 39px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 12px;
}

/* =========================
   TABLET ONLY
========================= */
@media (max-width:991px) and (min-width:768px){

    body.payment-page .payment-page-cards{
        grid-template-columns:repeat(3,1fr);
        gap:18px;
        max-width:700px;
        margin:0 auto 20px;
    }

    body.payment-page .payment-plan-card{
        min-height:170px;
        padding:16px;
    }

    body.payment-page .payment-checkout-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    body.payment-page .payment-checkout-inner{
        max-width:700px;
        width:100%;
        margin:auto;
    }

}
/* =========================
   MOBILE
========================= */
@media (max-width:767px){

    body.payment-page .payment-page-shell{
        padding:15px;
    }

    body.payment-page .payment-page-cards{
        grid-template-columns:1fr;
        gap:16px;
        max-width:71%;
        margin:auto;
    }

    body.payment-page .payment-plan-card{
        width:100%;
        min-height:160px;
        padding:16px;
    }

    body.payment-page .payment-checkout-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    body.payment-page .payment-checkout-inner{
        width:100%;
        max-width:100%;
        margin:auto;
        min-height:auto;
        padding:12px;
        border-radius:32px;
    }

    body.payment-page .qr-frame{
        width:220px;
        margin:auto;
    }

}
@media (max-width:767px){

    /* Payment container */
    body.payment-page .payment-checkout-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    /* Left card */
    body.payment-page .payment-qr-box{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    /* QR */
    body.payment-page .qr-panel{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    body.payment-page .qr-frame{
        width:220px;
        max-width:100%;
    }

    /* UTR */
    body.payment-page .utr-entry{
        width:100%;
        max-width:none;
        margin-top:0px;
    }

    body.payment-page .utr-row{
        display:block;
    }

    body.payment-page .utr-input{
        width:100%;
    }

    body.payment-page #utr{
        width:50%;
        margin: 12px auto 0 !important;   /* top | left-right auto | — centers it */
        display: block !important;
    }

    /* Buttons */
    body.payment-page .payment-action-row{
        display:flex;
        flex-direction:column;
        gap:12px;
        align-items:center;
    }

    body.payment-page .payment-timer,
    body.payment-page .paid-confirm-btn{
        width:50%;
    }
}
body.payment-page .payment-page-cards {
    max-width: 1000px !important;
    width: 100%;
    margin: 0 auto 0px !important;
}
.video-list ul li::before,
.video-list ul li::after {
    content: none !important;
    display: none !important;
}

.video-list ul li {
    padding-left: 0 !important;
}