@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poly:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-text-color: #000;
    --bg-color: #ffffff;

    --btn-color: #fdfdfd;
    /* button color*/
    --btn-bg: #000;
    /* button bg color*/

    --header-link-hover: #000000;
    --header-link-hover-bg: #bababa36;

    --input-hover-bd-color: #232323;

    --dropdown-bg: #f3f4f6;
    --dropdown-hover-bg: #dddddd84;

    --faq-h-text: #0e0e0e;
    --faq-content-text: #1e1e1e;

    --hr-color: #e5e7eb;

    --footer-link: #282828;
    --footer-link-hover: #000;

    --header-bg: #edececa5;
    /* color: #312f2f; */
    --hero-gradient: #fcfcfc;
    --hero-bg-img: url('../assets/images/background/dots-dark.svg');
    --pricing-blue: #1f4ed8;
}

.tw-dark {
    --primary-text-color: #fff;
    --bg-color: #000000;

    --btn-color: #000000;
    /* button color*/
    --btn-bg: #ffffff;
    /* button bg color*/

    --header-link-hover: #ffffff;
    --header-link-hover-bg: #8a8a8a5e;

    --input-hover-bd-color: #f8f8f8;

    --dropdown-bg: #171717;
    --dropdown-hover-bg: #2d2d2ddb;

    --faq-h-text: #efefef;
    --faq-content-text: #d4d4d4;

    --hr-color: #e1e1e195;

    --footer-link: #cfcfcf;
    --footer-link-hover: #ffffff;

    --header-bg: #232323a5;

    --hero-gradient: #000;
    --hero-bg-img: url('../assets/images/background/dots.svg');
    --pricing-blue: #1f4ed8;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

/* Hide vertical scrollbar globally while preserving scroll */
html,
body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0 !important;
    /* Chrome, Safari */
    height: 0 !important;
    display: none;
}

.bold-text {
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
}

body.modal-open {
    overflow: hidden;
}

header > .collapsible-header {
    display: flex;
    gap: 1rem;
    width: auto;
    /* was 100% */
    flex: 1 1 auto;
    /* let it grow but not monopolize */
    background-color: inherit;
    overflow: hidden;
    transition:
        width 0.3s ease,
        height 0.3s ease;
}

hr {
    border-color: var(--hr-color);
    border-style: solid;
}

.animated-collapse {
    transition: width 0.3s ease;
}

.header-links {
    position: relative;
    display: flex;
    align-items: center;
    min-width: fit-content;
    padding: 5px 10px;
    z-index: 2;
    cursor: pointer;
    transition:
        background-color 0.5s,
        color 0.3s;
}

.header-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* color: var(--header-link-hover); */
    background-color: var(--header-link-hover-bg);
    transform: scale(40%);
    opacity: 0;
    border-radius: 8px;
    transition: all 300ms;
}

.header-links:hover {
    color: var(--header-link-hover);
}

.header-links:hover::after {
    transform: scale(100%);
    opacity: 1;
}

.hero-section {
    background-image: var(--hero-bg-img);
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
}

.hero-bg-gradient {
    /* background: linear-gradient(180deg, var(--hero-gradient) 13%, rgba(0,0,0,0.258140756302521) 87%); */
    background: linear-gradient(
        180deg,
        var(--hero-gradient) 23%,
        rgba(0, 0, 0, 0) 87%,
        var(--hero-gradient) 97%
    );
}

.hero-section {
    isolation: isolate;
}

.hero-ambient-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-ambient-layer::before {
    content: '';
    position: absolute;
    inset: 14% 18% 4%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.86) 24%,
        rgba(255, 255, 255, 0.18) 54%,
        rgba(255, 255, 255, 0) 74%
    );
    filter: blur(18px);
}

.hero-map-glow {
    position: absolute;
    width: min(28vw, 360px);
    aspect-ratio: 1;
    border-radius: 9999px;
    filter: blur(70px);
    opacity: 0.75;
}

.hero-map-glow--left {
    top: 10%;
    left: 6%;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.26) 0%,
        rgba(251, 146, 60, 0.12) 36%,
        rgba(251, 146, 60, 0) 74%
    );
}

.hero-map-glow--right {
    top: 20%;
    right: 8%;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.18) 0%,
        rgba(129, 140, 248, 0.1) 38%,
        rgba(129, 140, 248, 0) 74%
    );
}

.hero-map-card {
    position: absolute;
    margin: 0;
    width: min(34vw, 500px);
    aspect-ratio: 1.2;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
    opacity: 0.92;
}

.hero-map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(252, 252, 252, 0.9) 0%,
            rgba(252, 252, 252, 0.22) 18%,
            rgba(252, 252, 252, 0.06) 50%,
            rgba(252, 252, 252, 0.2) 82%,
            rgba(252, 252, 252, 0.88) 100%
        ),
        linear-gradient(
            180deg,
            rgba(252, 252, 252, 0.72) 0%,
            rgba(252, 252, 252, 0.08) 28%,
            rgba(252, 252, 252, 0.18) 100%
        );
}

.hero-map-card::after {
    content: '';
    position: absolute;
    inset: auto 10% -18% 10%;
    height: 32%;
    z-index: 1;
    background: radial-gradient(
        circle at center,
        rgba(15, 23, 42, 0.14) 0%,
        rgba(15, 23, 42, 0) 72%
    );
    filter: blur(24px);
}

.hero-map-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.98) contrast(0.98);
}

.hero-map-card--left {
    top: clamp(44px, 10vw, 124px);
    left: max(-8vw, -108px);
    transform: rotate(-11deg);
    animation: hero-map-float-left 16s ease-in-out infinite;
}

.hero-map-card--left img {
    transform: scale(1.03);
    object-position: 50% 12%;
}

.hero-map-card--right {
    top: clamp(44px, 10vw, 168px);
    right: max(-8vw, -108px);
    transform: rotate(5deg);
    animation: hero-map-float-right 18s ease-in-out infinite;
}

.hero-map-card--right img {
    transform: scale(1.02);
    object-position: 50% 50%;
}

.hero-bg-gradient::before {
    content: '';
    position: absolute;
    inset: 8% 19% 4%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(252, 252, 252, 0.98) 0%,
        rgba(252, 252, 252, 0.92) 32%,
        rgba(252, 252, 252, 0.44) 58%,
        rgba(252, 252, 252, 0) 82%
    );
}

.hero-copy-shell {
    position: relative;
    z-index: 2;
}

@keyframes hero-map-float-left {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-11deg);
    }

    50% {
        transform: translate3d(0, -16px, 0) rotate(-8deg);
    }
}

@keyframes hero-map-float-right {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(9deg);
    }

    50% {
        transform: translate3d(0, 18px, 0) rotate(12deg);
    }
}

.tw-dark .hero-ambient-layer::before {
    background: radial-gradient(
        circle at center,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(5, 5, 5, 0.8) 26%,
        rgba(5, 5, 5, 0.16) 58%,
        rgba(5, 5, 5, 0) 76%
    );
}

.tw-dark .hero-map-card {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.58);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.tw-dark .hero-map-card::before {
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.82) 0%,
            rgba(5, 5, 5, 0.22) 18%,
            rgba(5, 5, 5, 0.08) 50%,
            rgba(5, 5, 5, 0.22) 82%,
            rgba(5, 5, 5, 0.8) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.7) 0%,
            rgba(5, 5, 5, 0.08) 28%,
            rgba(5, 5, 5, 0.24) 100%
        );
}

.tw-dark .hero-bg-gradient::before {
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.88) 32%,
        rgba(0, 0, 0, 0.44) 58%,
        rgba(0, 0, 0, 0) 82%
    );
}

@media (max-width: 1320px) {
    .hero-map-card {
        width: min(32vw, 430px);
    }

    .hero-map-card--left {
        left: -108px;
    }

    .hero-map-card--right {
        right: -112px;
    }

    .hero-bg-gradient::before {
        inset: 9% 15% 4%;
    }
}

@media (max-width: 1180px) {
    .hero-map-card {
        width: min(30vw, 340px);
        opacity: 0.64;
    }

    .hero-map-card--left {
        left: -92px;
    }

    .hero-map-card--right {
        right: -94px;
    }

    .hero-map-glow {
        opacity: 0.52;
    }

    .hero-bg-gradient::before {
        inset: 9% 11% 4%;
    }
}

@media (max-width: 960px) {
    .hero-ambient-layer {
        display: none;
    }

    .hero-bg-gradient::before {
        inset: 7% 4% 2%;
    }
}

.gradient-text {
    background: rgb(215, 215, 215);
    background: linear-gradient(
        90deg,
        rgba(215, 215, 215, 1) 18%,
        rgba(136, 136, 136, 1) 71%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purple-bg-grad {
    background: rgb(126, 34, 206);
    background: linear-gradient(
        90deg,
        #7e22ce91 8%,
        #625aafae 31%,
        #7badbbbc 76%,
        #54d2d0ca 89%
    );
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 10px 15px;
    width: max-content;
    border-radius: 10px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

/* removed empty :hover ruleset that was triggering linter warning */

.btn:disabled {
    cursor: default;
}

.input {
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    outline: none;
    min-width: 100px;
    border: 1px solid #979797;
    transition: border 0.3s;
}

.input:active,
.input:focus,
.input:focus-within {
    border: 1px solid var(--input-hover-bd-color) !important;
}

/* ------------------- scrollbar ------------- */
.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 20px;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 25px;
    /* background: #f7f4ed; */
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    border-radius: 25px;
}

/* ---------------- dropdown --------------------- */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    outline: none;
    /* background-color: #000; */
    /* border: 1px solid #ccc; */
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: var(--dropdown-bg);
    /* border: 1px solid #c9c9c9; */
    list-style-type: none;
    padding: 0;
    width: 100%;
    left: 0px;
    /* top: 105%; */
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: var(--dropdown-hover-bg);
}

/* -------------- testimonial slider ------------------*/
.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    width: min(340px, 85vw);
    min-width: min(340px, 85vw);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.testimonial-slider__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.testimonial-slider__control:hover {
    transform: translateY(-1px);
    background: #fff7ed;
    border-color: #fdba74;
}

.tw-dark .testimonial-slider__control {
    background: #080808;
    color: #ffffff;
    border-color: #1f2123;
}

.tw-dark .testimonial-slider__control:hover {
    background: #141414;
    border-color: #4b5563;
}

/* -------------- carousel ------------------*/
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 70%;
    max-width: 70vw;
    margin: 0 auto;
}

.carousel {
    animation: scroll 30s linear infinite;
    will-change: transform;
    display: flex;
    width: max-content;
}

.carousel-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 0 20px;
    min-width: 120px;
    flex-shrink: 0;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .carousel-img {
        margin: 0 20px 0 20px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

/* ------ animated border ------- */

.animated-border {
    position: relative;
    overflow: visible;
}

.animated-border::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -100%;
    width: 30%;
    height: 100%;
    border-radius: inherit;
    /* background: linear-gradient(#6366f1 23%, rgba(124,190,255,0) 87%); */
    background-color: #6366f1;
    background-repeat: no-repeat;
    /* background-size: 200% 200%; */
    background-position: 0% 0%;
    filter: blur(1.5rem);
    opacity: 0.8;
    box-shadow: inset 0px 0px 20px 5px #6366f1;
    /* transform: rotate(90deg); */
    z-index: -2;
    pointer-events: none;
    animation: slide 10s ease-in-out infinite;
}

.animated-border::before {
    filter: blur(1.5rem);
    opacity: 0.3;
    will-change: transform;
}

@keyframes slide {
    0% {
        left: -100%;
        /* Start completely outside the left edge */
        right: 100%;
        /* End completely outside the right edge */
    }

    100% {
        left: 100%;
        /* Move completely outside the right edge */
        right: -100%;
        /* End completely outside the left edge */
    }
}

.footer-link {
    width: -moz-fit-content;
    width: fit-content;
    color: var(--footer-link);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--footer-link-hover);
}

/* Responsive horizontal content padding helper for pages that don't rebuild Tailwind */
.pricing-lifetime {
    background-color: var(--pricing-blue);
    /* blue */
    color: #ffffff;
}

.pricing-lifetime .btn {
    background-color: #ffffff;
    color: #000000;
}

.pricing-lifetime i {
    color: #ffffff;
}

.pricing-badge {
    background-color: var(--pricing-blue);
    color: #ffffff;
}

.pricing-note {
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
}

.pricing-gap {
    height: 36px;
}

/* pricing toggle */
.plan-toggle {
    display: inline-flex;
    border: 1px solid var(--hr-color);
    background: transparent;
    padding: 4px;
    border-radius: 9999px;
    gap: 4px;
}

.plan-toggle .opt {
    padding: 6px 12px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: var(--primary-text-color);
    cursor: pointer;
}

.plan-toggle .opt.active {
    background: var(--pricing-blue);
    color: #fff;
}

/* Align benefit lists across pricing cards */
.pricing-header {
    margin-bottom: 8px;
}

/* Align features start across cards by adding consistent top margin */
.features-list {
    margin-top: 28px !important;
}

@media (min-width: 1024px) {
    .pricing-lifetime .features-list {
        margin-top: 78px !important;
    }
}

/* Tighten lifetime bottom spacing before the button without moving the button row */
.pricing-lifetime .features-list {
    margin-bottom: 0;
}

/* Spacer to preserve height where the subtitle used to be */
.pricing-sub-spacer {
    height: 20px;
}

/* Save badge */
.save-badge {
    display: inline-block;
    background: #16a34a;
    /* green */
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 9999px;
    margin-left: 40px;
}

.save-badge[hidden] {
    display: none !important;
}

.content-pad {
    padding-left: 8px;
    padding-right: 8px;
}

/* Percent-based horizontal padding helper for headers/containers */
.pad-x-2p {
    padding-left: 2%;
    padding-right: 2%;
}

@media (min-width: 640px) {
    /* sm */
    .content-pad {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1024px) {
    /* lg */
    .content-pad {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (min-width: 1280px) {
    /* xl */
    .content-pad {
        padding-left: 64px;
        padding-right: 64px;
    }
}

/* Fixed size for header logo across all pages */
.logo-fixed {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Remove native control overlay/tint on WebKit (Safari, iOS) and Chromium */
video::-webkit-media-controls-panel {
    background: transparent !important;
}

video::-webkit-media-controls {
    background-color: transparent !important;
}

video::-webkit-media-controls-enclosure {
    background-color: transparent !important;
}

video::-webkit-media-controls-overlay-play-button {
    background-color: transparent !important;
}

video::-internal-media-controls-overlay-cast-button,
video::-webkit-media-controls-overlay-cast-button {
    display: none !important;
}

/* Custom video overlay play button */
.video-wrapper {
    position: relative;
}

.video-overlay-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
    border: none;
    cursor: pointer;
    transition: background 200ms ease;
}

.video-overlay-play:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
}

.video-overlay-play i {
    font-size: 64px;
}

.video-overlay-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    cursor: pointer;
}

.video-overlay-btn i {
    font-size: 22px;
}

.video-wrapper:hover .video-overlay-btn {
    opacity: 1;
}

.video-pause-btn {
    opacity: 0;
    transition: opacity 150ms ease;
}

.video-overlay-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: var(--faq-h-text);
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: var(--faq-content-text);
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition:
        max-height 0.4s,
        padding 0.4s;
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        top: 64px;
        left: 0px;
        flex-direction: column;
        opacity: 0;
        height: 0vh;
        min-height: 0vh;
        /* height: 100dvh; */
        width: 100vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: center;
        text-align: center;
        background-color: var(--header-bg);
        /* color: #373636; */
        overflow-y: auto;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0px 2px 3px 2px #9f9f9f7c;
    }

    /* .header-links{
        color: var(--he);
    } */
}

@media (max-width: 1024px) {
    #pricing-tables {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
        min-width: auto !important;
        max-width: none !important;
    }

    #pricing-tables .pricing-wrap {
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 0 !important;
        max-width: 500px !important;
        /* allow Stripe to switch to dropdown if needed */
    }
}

/* Ensure subscription table is left and lifetime card is right (both themes) */
#pricing-tables .subscriptions {
    order: 1;
}

#pricing-tables .lifetime {
    order: 2;
}

/* Custom payment button matching Stripe Pricing Table primary styling */
.gm-stripe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    background-color: #da8022;
    /* Stripe primary seen in iframe: --pt-color-primary */
    border: 1px solid #da8022;
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.15s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.gm-stripe-btn:hover {
    background-color: #c6711e;
    border-color: #c6711e;
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

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

.gm-stripe-btn--lg {
    width: 100%;
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 12px;
}

/* Custom card to mirror Stripe Pricing Table look */
.gm-price-card {
    display: block;
    width: 100%;
}

.gm-price-card__inner {
    background: #f6f6f6;
    /* similar light container */
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.gm-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(218, 128, 34, 0.12);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    animation: glow-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(218, 128, 34, 0.3);
}

@keyframes glow-pulse {
    0%,
    100% {
        box-shadow:
            0 0 10px rgba(218, 128, 34, 0.3),
            0 0 20px rgba(218, 128, 34, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(218, 128, 34, 0.6),
            0 0 30px rgba(218, 128, 34, 0.4),
            0 0 40px rgba(218, 128, 34, 0.2);
    }
}

.gm-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.gm-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    min-width: 120px;
}

.gm-product-img {
    width: 120px;
    height: auto;
}

.gm-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gm-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.gm-desc {
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.9;
    margin: 0;
}

.gm-price-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.gm-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.gm-price {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
        Arial, sans-serif;
}

.gm-features {
    margin-top: 18px;
}

.gm-features-title {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.gm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gm-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.gm-check {
    display: inline-flex;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.gm-feature-text {
    font-size: 14px;
    color: #1a1a1a;
}

/* Dark mode styles */
.tw-dark .gm-price-card__inner {
    background: #080808;
    border-color: #1f2123;
}

.tw-dark .gm-name,
.tw-dark .gm-price,
.tw-dark .gm-features-title,
.tw-dark .gm-feature-text {
    color: #ffffff;
}

.tw-dark .gm-desc {
    color: #ffffff;
    opacity: 0.9;
}

.tw-dark .gm-badge {
    background: rgba(218, 128, 34, 0.22);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(218, 128, 34, 0.4);
}

.tw-dark .gm-badge {
    animation: glow-pulse-dark 2s ease-in-out infinite;
}

@keyframes glow-pulse-dark {
    0%,
    100% {
        box-shadow:
            0 0 10px rgba(218, 128, 34, 0.4),
            0 0 20px rgba(218, 128, 34, 0.3);
    }

    50% {
        box-shadow:
            0 0 20px rgba(218, 128, 34, 0.7),
            0 0 30px rgba(218, 128, 34, 0.5),
            0 0 40px rgba(218, 128, 34, 0.3);
    }
}

.tw-dark .gm-check svg {
    fill: #ffffff !important;
    opacity: 0.5 !important;
}

.tw-dark .gm-stripe-btn {
    color: #ffffff;
    background-color: #da8022;
    border-color: #da8022;
}

.tw-dark .gm-stripe-btn:hover {
    background-color: #c6711e;
    border-color: #c6711e;
}

/* =============================================
   NEW PRICING CARDS SYSTEM
   ============================================= */

/* Pricing Grid - 2 column responsive layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 900px;
    width: 100%;
    padding: 0 16px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 20px;
    }
}

/* Base Price Card */
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 24px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Dark mode base card */
.tw-dark .price-card {
    background: #0a0a0a;
    border-color: #1f2123;
}

.tw-dark .price-card:hover {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.05);
}

/* Featured Card (Pro) - Elevated styling */
.price-card--featured {
    background: linear-gradient(180deg, #fffbf5 0%, #fff8ed 100%);
    border: 2px solid #f97316;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    z-index: 1;
}

.price-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 16px 50px rgba(249, 115, 22, 0.2);
}

.tw-dark .price-card--featured {
    background: linear-gradient(180deg, #1a1510 0%, #140e08 100%);
    border-color: #f97316;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

/* Badge styling */
.price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.price-card__badge--deal {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Card Header */
.price-card__header {
    text-align: center;
    margin-bottom: 16px;
}

.price-card__title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.tw-dark .price-card__title {
    color: #ffffff;
}

.price-card__tagline {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.tw-dark .price-card__tagline {
    color: #9ca3af;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    margin: 8px 0 16px 0;
    gap: 4px;
}

.tw-dark .billing-toggle {
    background: #1f2123;
}

.billing-toggle__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.billing-toggle__btn:hover {
    color: #1a1a1a;
}

.tw-dark .billing-toggle__btn:hover {
    color: #ffffff;
}

.billing-toggle__btn--active {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tw-dark .billing-toggle__btn--active {
    background: #2d2d2d;
    color: #ffffff;
}

.billing-toggle__save {
    background: #16a34a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Price Block */
.price-card__price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

/* Add spacer for cards without billing toggle to align prices */
.price-card--free .price-card__price-block,
.price-card--lifetime .price-card__price-block {
    margin-top: 74px;
    /* Matches billing toggle height */
}

.price-card__amount {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tw-dark .price-card__amount {
    color: #ffffff;
}

.price-card__period {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
}

.tw-dark .price-card__period {
    color: #9ca3af;
}

/* Features List */
.price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.tw-dark .price-card__features li {
    color: #d1d5db;
}

.price-card__features li i {
    color: #16a34a;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-card__features li strong {
    font-weight: 600;
}

/* CTA Button */
.price-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f3f4f6;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

.price-card__cta:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.price-card__cta i {
    transition: transform 0.2s ease;
}

.price-card__cta:hover i {
    transform: translateX(4px);
}

.tw-dark .price-card__cta {
    background: #1f2123;
    color: #ffffff;
    border-color: #2d2d2d;
}

.tw-dark .price-card__cta:hover {
    background: #2d2d2d;
}

/* Primary CTA (Pro card) */
.price-card__cta--primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.price-card__cta--primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.tw-dark .price-card__cta--primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
}

/* Deal CTA (Lifetime card) */
.price-card__cta--deal {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.price-card__cta--deal:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.tw-dark .price-card__cta--deal {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
}

/* Note text below CTA */
.price-card__note {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin: 12px 0 0 0;
}

.tw-dark .price-card__note {
    color: #6b7280;
}

/* Lifetime card special styling */
.price-card--lifetime {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #16a34a;
}

.tw-dark .price-card--lifetime {
    background: linear-gradient(180deg, #0a1f0d 0%, #052e16 100%);
    border-color: #16a34a;
}

/* Star rating icons size */
div[aria-label='5 star rating'] .bi-star-fill {
    font-size: 25px;
}
