:root {
    --primary-color: #6A0DAD;
    --secondary-color: #1E90FF;
    --accent-color: #00BFFF;
    --fifth-color: #4B0082;
    --white: #ffff;
    --main-font: "Montserrat", serif;
    --accent-font: "Roboto", sans-serif;
    --sixth-color: #1A1A2E;
    --seventh-color: #4A4A6A;
    --eighth-color: #0d6efd;
    --nineth-color: #104E8B;
    --tenth-color: rgba(26, 26, 46, 0.08);
    --eleventh-color: 0 20px 60px rgba(26, 26, 46, 0.08);
    --twelfth-color: 0 10px 24px rgba(26, 26, 46, 0.04);
    --thirteenth-color: #40ad0d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font);
    color: var(--seventh-color);
    background: var(--white);
    line-height: 1.7;
    font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--sixth-color);
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
    color: inherit;
}

a:hover {
    color: var(--nineth-color);
}

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

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

.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 840px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--seventh-color);
    margin-bottom: 0;
}

.section-kicker {
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--accent-font);
    letter-spacing: 0.22em;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.btn {
    border-radius: 0;
    /* padding: 0.85rem 1.5rem; */
    font-weight: 600;
    font-family: var(--main-font);
    letter-spacing: 0.02em;
}

.btn-brand {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white);
    transition: all 0.3s;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--eighth-color);
    border-color: var(--nineth-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-brand-solid {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-brand-solid:hover,
.btn-brand-solid:focus {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-brand-solid:disabled {
    background: var(--accent-color);
    color: var(--white);
}

.btn-brand-outline {
    background: var(--white);
    color: var(--eighth-color);
    padding: 15px 20px;
    font-size: 1.25rem;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s;
    display: inline-block;
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
    background: var(--eighth-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-brand-outline:disabled {
    background: var(--white);
    color: var(--eighth-color);
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}

.form-control,
.form-select {
    min-height: 56px;
    border-radius: 0;
    border: 1px solid var(--tenth-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--eighth-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 255, 0.15);
}

/* Header */

.topbar {
    background: var(--sixth-color);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--main-font);
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, 0.75);
}

.topbar a:hover {
    color: var(--white);
}

.topbar-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    text-decoration: none;
}

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

.site-navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-brand-title {
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.site-brand-title span {
    color: var(--eighth-color);
}

.site-brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2.6px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--main-font);
    margin-top: 4px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-family: var(--main-font);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--secondary-color);
}

/* Shared homepage surfaces */

.bg-medium {
    background:
        radial-gradient(circle at top left, rgba(30, 144, 255, 0.06), transparent 22%),
        radial-gradient(circle at top right, rgba(106, 13, 173, 0.08), transparent 28%),
        linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
}

/* #hero-section */

#hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: auto, auto, cover;
    pointer-events: none;
}

#hero-section .container,
#hero-section .row,
#hero-section .col-lg-7,
#hero-section .col-lg-5 {
    position: relative;
    z-index: 1;
}

#hero-section .hero-section-row {
    min-height: 90vh;
    padding: 3rem 0;
}

#hero-section .hero-section-content {
    max-width: 680px;
}

#hero-section .hero-section-title {
    color: var(--white);
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    line-height: 0.96;
    margin-bottom: 1.1rem;
    letter-spacing: -0.03em;
}

#hero-section .hero-section-subtitle {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

#hero-section .hero-section-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1rem;
    max-width: 520px;
    margin-left: auto;
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 60px rgba(8, 12, 28, 0.24);
}

#hero-section .hero-section-panel img {
    width: 100%;
}

#hero-section .hero-works-with {
    width: 100%;
    color: var(--white) !important;
}

#hero-section .hero-works-with img{
    width: 75px;
}

/* customer-section */

#customer-vert-section {
    background: var(--white);
}

#customer-vert-section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

#customer-vert-section .highlight-section-copy {
    margin-bottom: 28px;
    color: var(--seventh-color);
}

#customer-vert-section .highlight-section-media {
    position: relative;
    min-height: 540px;
}

#customer-vert-section .highlight-section-image-primary {
    width: 85%;
    height: 750px;
    object-fit: cover;
    box-shadow: var(--eleventh-color);
}

#customer-vert-section .highlight-section-image-accent {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 44%;
    height: 280px;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: var(--eleventh-color);
}

#customer-vert-section .highlight-section-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 30px;
}

#customer-vert-section .highlight-section-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 255, 0.9) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--twelfth-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

#customer-vert-section .highlight-section-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.3);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(214, 236, 255, 1) 100%);
}

#customer-vert-section .highlight-section-step i {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.35);
}

#customer-vert-section .highlight-section-step h5 {
    margin-bottom: 8px;
    color: var(--sixth-color);
}

#customer-vert-section .highlight-section-step p {
    margin-bottom: 0;
    color: var(--seventh-color);
}







/* customer-section */

#customer-section {
    position: relative;
    /* background:
        radial-gradient(circle at top left, rgba(30, 144, 255, 0.05), transparent 22%),
        radial-gradient(circle at top right, rgba(106, 13, 173, 0.06), transparent 28%),
        linear-gradient(180deg, #f8f9fa 0%, #f3f7fc 100%); */
}

.customer-section-bg {
    background: var(--white);
    border: 1px solid rgba(30, 144, 255, 0.12);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    height: 100%;
}

#customer-section .section-heading {
    margin-bottom: 3rem;
}

#customer-section .customer-section-intro {
    max-width: 760px;
    margin: 0 auto;
}

#customer-section .customer-card-grid {
    align-items: stretch;
}

#customer-section .customer-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* #customer-section .customer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.14);
    border-color: rgba(30, 144, 255, 0.22);
} */

#customer-section .customer-card-media {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    /* background: linear-gradient(135deg, rgba(106, 13, 173, 0.16), rgba(30, 144, 255, 0.12)); */
}

#customer-section .customer-card-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    margin-top: 30px;
    margin-left: 30px;
    padding-bottom: 60px;
    background: var(--white);
    /* transition: transform 0.45s ease; */
}

/* #customer-section .customer-card:hover .customer-card-image {
    transform: scale(1.03);
} */

#customer-section .customer-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 28, 0.08) 0%, rgba(8, 12, 28, 0.28) 100%);
    pointer-events: none;
    margin-top: 30px;
    margin-left: 30px;
    margin-bottom: 30px;
}

#customer-section .customer-card-body {
    position: relative;
    padding: 1.75rem 1.5rem 1.6rem;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 0.96) 100%); */
}

#customer-section .customer-step-badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

#customer-section .customer-step-icon {
    /* width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 13, 173, 0.08); */
    color: var(--secondary-color);
    /* border: 1px solid rgba(106, 13, 173, 0.18);
    box-shadow: var(--twelfth-color); */
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    /* flex: 0 0 54px; */
}

#customer-section .customer-step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 0.45rem 0.7rem;
    background: rgba(106, 13, 173, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(106, 13, 173, 0.18);
    font-family: var(--accent-font);
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
}

#customer-section .customer-card-title {
    color: var(--sixth-color);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

#customer-section .customer-step-list {
    gap: 1rem;
}

#customer-section .customer-step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 255, 0.9) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--twelfth-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

#customer-section .customer-step-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(214, 236, 255, 1) 100%);
}

#customer-section .customer-step-item-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.35);
    padding-top: 0;
    font-size: 1rem;
}

#customer-section .success-info-content h5 {
    color: var(--sixth-color);
    font-weight: 500;
    font-size: 1.25rem;
}

#customer-section .success-info-content p {
    color: var(--seventh-color);
}




/* #features-section */

#features-section {
    background: var(--white);
}

#features-section .section-heading {
    margin-bottom: 3rem;
}

#features-section .features-card {
    background: #f8f9fa;
    box-shadow: var(--twelfth-color);
    border: 1px solid rgba(16, 24, 40, 0.08);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#features-section .features-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
    border: 1px solid rgba(30, 144, 255, 0.14);
    color: var(--secondary-color) !important;
}

#features-section .features-card-image {
    width: 100%;
    height: 330px;
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(240, 247, 255, 1) 100%);
}

#features-section .features-card-body {
    padding: 1.5rem;
}

#features-section .features-card-body h3{
    font-weight: 600;
    font-size: 1.75rem;
}

#features-section .features-card-link:hover {
    color: var(--eighth-color);
}

.features-card-header {
    color: var(--white);
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    background-attachment: fixed;
}

.features-card-header h1 {
    color: var(--white);
    font-weight: 600;
}

/* #features-section-highlight */

.features-section-highlight {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(145deg, rgba(30, 144, 255, 0.92) 0%, rgba(106, 13, 173, 0.94) 52%, rgba(26, 26, 46, 0.98) 100%);
}

.features-section-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 22%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08), transparent 20%);
    pointer-events: none;
}

.features-section-highlight .feature-highlight-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem;
}

.features-section-highlight .highlight-section-card {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(8, 12, 28, 0.22);
    color: var(--white);
    max-width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.features-section-highlight .highlight-section-card .big-af {
    font-size: 3rem;
    margin-top: 0.5rem;
}

.features-section-highlight h3 {
    color: var(--white);
}

.secure-note i {
    color: var(--secondary-color);
}

/* Stats Section  */

#stats-section-temp {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 75px 0;
    color: var(--white);
    background: linear-gradient(145deg, rgba(30, 144, 255, 0.92) 0%, rgba(106, 13, 173, 0.94) 52%, rgba(26, 26, 46, 0.98) 100%);
}

#stats-section-temp .stats-section-card {
    padding: 0px 20px;
    text-align: center;
    color: var(--white);
    height: 100%;
}

#stats-section-temp h3 {
    text-align: center;
    color: var(--white);
}

/* #stats-section */

#stats-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 75px 0;
    color: var(--white);
    background: linear-gradient(145deg, rgba(30, 144, 255, 0.92) 0%, rgba(106, 13, 173, 0.94) 52%, rgba(26, 26, 46, 0.98) 100%);
}

#stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.06), transparent 18%);
    z-index: 0;
    pointer-events: none;
}

#stats-section .container,
#stats-section .row,
#stats-section > div {
    position: relative;
    z-index: 2;
}

#stats-section .stats-section-card {
    padding: 34px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(8, 12, 28, 0.22);
    color: var(--white);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

#stats-section .stats-section-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 24px 48px rgba(8, 12, 28, 0.28);
}

#stats-section .stats-section-card h3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

#stats-section .stats-section-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* #highlight-vert-section */

#highlight-vert-section {
    background: var(--white);
}

#highlight-vert-section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

#highlight-vert-section .highlight-section-copy {
    margin-bottom: 28px;
    color: var(--seventh-color);
}

#highlight-vert-section .highlight-section-media {
    position: relative;
    min-height: 540px;
}

#highlight-vert-section .highlight-section-image-primary {
    width: 85%;
    height: 750px;
    object-fit: cover;
    box-shadow: var(--eleventh-color);
}

#highlight-vert-section .highlight-section-image-accent {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 44%;
    height: 280px;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: var(--eleventh-color);
}

#highlight-vert-section .highlight-section-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 30px;
}

#highlight-vert-section .highlight-section-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 255, 0.9) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--twelfth-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

#highlight-vert-section .highlight-section-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.3);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(214, 236, 255, 1) 100%);
}

#highlight-vert-section .highlight-section-step i {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.35);
}

#highlight-vert-section .highlight-section-step h5 {
    margin-bottom: 8px;
    color: var(--sixth-color);
}

#highlight-vert-section .highlight-section-step p {
    margin-bottom: 0;
    color: var(--seventh-color);
}

/* control-safety section */
.total-control-section {
    background:
        radial-gradient(circle at top right, rgba(106, 13, 173, 0.05), transparent 25%),
        linear-gradient(180deg, #f8f9fa 0%, #f2f6fb 100%);
}

.total-control-highlight-image {
    margin-top: 100px;
    width: 85%;
    height: 700px;
    object-fit: cover;
    box-shadow: var(--eleventh-color);
}

.highlight-section-image-accent-left {
  position: relative;
  left: -50px;
  top: -500px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 8px solid var(--white);
}

/* #pricing-section */

#pricing-section {
    background:
        radial-gradient(circle at top left, rgba(30, 144, 255, 0.05), transparent 22%),
        radial-gradient(circle at bottom right, rgba(106, 13, 173, 0.05), transparent 28%),
        linear-gradient(180deg, #f8f9fa 0%, #f2f6fb 100%);
}

#pricing-section .pricing-card {
    background: var(--white);
    box-shadow: var(--twelfth-color);
    border: 1px solid rgba(16, 24, 40, 0.08);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#pricing-section .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.18);
    color: var(--secondary-color) !important;
    cursor: pointer;
}

#pricing-section .pricing-card-header {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

#pricing-section .pricing-card-header h3 {
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0;
}

#pricing-section .pricing-card-header h4 {
    color: var(--white);
    font-family: var(--main-font);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 0;
}

#pricing-section .pricing-card-body {
    padding: 1.5rem;
}

#pricing-section .pricing-card-badge {
    color: var(--secondary-color);
    font-weight: 700;
    font-family: var(--accent-font);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

#pricing-section .pricing-card-link {
    color: #000;
    font-weight: 600;
}

#pricing-section .pricing-card-link:hover {
    color: var(--eighth-color);
}


.cta4-section{
  max-width: 1060px;
  margin: 0 auto 2rem;
  text-align: center;
}

.cta4-section p {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* #cta-section detail */

#cta-section-detail,
#cta-section-detail-intro {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.cta-section-detail-shell {
    position: relative;
}

.cta-section-detail-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(30, 144, 255, 0.08), transparent 18%),
        radial-gradient(circle at 88% 26%, rgba(106, 13, 173, 0.08), transparent 22%);
    pointer-events: none;
}

.cta-section-detail-shell .container,
.cta-section-detail-shell .section-heading {
    position: relative;
    z-index: 1;
}

.cta-section-detail-closing .section-heading {
    max-width: 820px;
}

/* #cta-section */

#cta-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.99), rgba(30, 144, 255, 0.92));
    background-position: center;
    background-size: cover;
    color: var(--white);
}

#cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16), transparent 26%),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(26, 26, 46, 0.08), rgba(26, 26, 46, 0.24));
    z-index: 0;
}

#cta-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 170px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23F8F7FF" fill-opacity="1" d="M0,224L48,202.7C96,181,192,139,288,133.3C384,128,480,160,576,186.7C672,213,768,235,864,234.7C960,235,1056,213,1152,176C1248,139,1344,85,1392,58.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

#cta-section .container {
    position: relative;
    z-index: 2;
    padding: 5.5rem 2rem;
}

#cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1;
}

#cta-section h1 {
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1;
}

#cta-section p {
    max-width: 780px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.88);
}

#cta-section .btn-accent {
    box-shadow: 0 16px 32px rgba(26, 26, 46, 0.28);
}

/* #testimonials-section */

#testimonials-section {
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.2), rgba(0, 0, 0, 0.04));
}

#testimonials-section .testimonials-card {
    background: var(--white);
    height: 100%;
    padding: 2rem;
    position: relative;
    box-shadow: var(--twelfth-color);
    border: 1px solid rgba(16, 24, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#testimonials-section .testimonials-card::before {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(30, 144, 255, 0.22);
    font-size: 1.75rem;
}

#testimonials-section .testimonials-card p {
    color: var(--seventh-color);
    margin-bottom: 24px;
    padding-right: 20px;
}

#testimonials-section .testimonials-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.16);
}

#testimonials-section .testimonials-card-name {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--sixth-color);
    font-weight: 700;
}

#testimonials-section .testimonials-card-role {
    color: var(--secondary-color);
    font-family: var(--accent-font);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 700;
}

/* Footer */

.site-footer {
    background: var(--sixth-color);
    color: rgba(255, 255, 255, 0.75);
}

.site-footer-newsletter {
    background: #151525;
    padding: 3rem 0;
}

.site-footer-newsletter h3,
.site-footer-main h5 {
    color: var(--white);
}

.site-footer-main {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-text,
.site-footer-contact span,
.site-footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li + li {
    margin-top: 0.7rem;
}

.site-footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer-links a:hover {
    color: var(--eighth-color);
}

.site-footer-social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.site-footer-social-links a:hover {
    background: var(--eighth-color);
    border-color: var(--eighth-color);
    color: var(--white);
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.detail-header {
    min-height: 500px;
}

/* Login Page */

.login-page-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 110px 0;
}

.login-page-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 28%), radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.10), transparent 24%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.login-page-row {
    min-height: calc(100vh - 220px);
    position: relative;
    /* z-index: 1; */
}

.login-page-content {
    max-width: 520px;
}

.login-page-title {
    color: var(--white);
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.login-page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 480px;
}

.login-page-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-page-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.login-page-benefit i {
    color: var(--white);
    margin-top: 4px;
}

.login-page-benefit span {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.login-shell {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(8, 12, 28, 0.25);
}

.login-card {
    padding: 2rem;
    height: 100%;
}

.login-card-main {
    background: rgba(255, 255, 255, 0.96);
}

.login-card-alt {
    background: rgba(26, 26, 46, 0.92);
    color: var(--white);
}

.login-card-title,
.login-card-title-sm {
    margin-bottom: 0.5rem;
}

.login-card-text {
    color: var(--seventh-color);
}

.login-card-alt .login-card-title-sm,
.login-card-alt .login-card-text {
    color: var(--white);
}

.login-form .form-label {
    font-weight: 600;
    color: var(--sixth-color);
    margin-bottom: 0.5rem;
}

.login-input {
    background: #fff;
}

.login-remember .form-check-input {
    margin-top: 0.2rem;
}

.login-remember .form-check-label {
    color: var(--seventh-color);
}

.login-links a {
    color: var(--secondary-color);
    font-weight: 600;
}

.login-links a:hover {
    color: var(--nineth-color);
}

.external-login-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.external-login-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 0.95rem 1rem;
    font-weight: 600;
}

.external-login-btn:hover,
.external-login-btn:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    transform: translateY(-2px);
}

/* Media */

@media (max-width: 991.98px) {
    .login-page-section {
        padding: 80px 0;
    }

    .login-page-row {
        min-height: auto;
    }

    .login-page-content {
        max-width: 100%;
    }
}

/* Auth Section */

.auth-section {
    background: #f8f9fa;
}

.auth-section-heading {
    margin-bottom: 3rem;
}

.auth-info-panel {
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--twelfth-color);
    border: 1px solid rgba(30, 144, 255, 0.08);
}

.auth-info-title {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.auth-info-copy {
    color: var(--seventh-color);
    margin-bottom: 1.5rem;
}

.auth-info-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-info-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 255, 0.9) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--twelfth-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.auth-info-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.3);
}

.auth-info-step i {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.35);
}

.auth-info-step h5 {
    margin-bottom: 0.4rem;
    color: var(--sixth-color);
}

.auth-info-step p {
    margin-bottom: 0;
    color: var(--seventh-color);
}

.auth-info-note {
    margin-top: 1.5rem;
    color: var(--seventh-color);
    font-weight: 500;
}

.auth-info-note a {
    color: var(--secondary-color);
    font-weight: 700;
}

.auth-info-note a:hover {
    color: var(--nineth-color);
}

.auth-card {
    /*background: var(--white);*/
    background: #f8f9fa;
    padding: 2rem;
    box-shadow: var(--twelfth-color);
    border: 1px solid rgba(30, 144, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.auth-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.2);
}

.auth-card-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
}

.auth-card-header {
    margin-bottom: 1.5rem;
}

.auth-card-title {
    margin-bottom: 0.5rem;
}

.auth-card-text {
    color: var(--seventh-color);
}

.auth-form .form-label {
    font-weight: 600;
    color: var(--sixth-color);
    margin-bottom: 0.5rem;
}

.auth-input {
    background: var(--white);
}

.auth-provider-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.auth-provider-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1rem;
    background: var(--white);
    border: 1px solid rgba(30, 144, 255, 0.14);
    color: var(--sixth-color);
    font-weight: 600;
    box-shadow: var(--twelfth-color);
}

.auth-provider-btn:hover,
.auth-provider-btn:focus {
    background: rgba(227, 242, 255, 0.6);
    border-color: rgba(30, 144, 255, 0.3);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.auth-provider-name {
    color: var(--secondary-color);
    font-weight: 700;
}

.auth-form-narrow {
    max-width: 520px;
}

/* CMS Index */

.cms-section {
    /*background: #f8f9fa;*/
    background-color: #e9ecef;
}

.cms-section-heading {
    margin-bottom: 3rem;
}

.cms-toolbar-card,
.cms-filter-card,
.cms-table-card {
    background: var(--white);
    border: 1px solid rgba(30, 144, 255, 0.08);
    box-shadow: var(--twelfth-color);
}

.cms-toolbar-card,
.cms-filter-card {
    padding: 1.75rem;
}

.cms-table-card {
    overflow: hidden;
}

.cms-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cms-card-text {
    color: var(--seventh-color);
}

.cms-input {
    background: var(--white);
}

.cms-table thead th {
    background: rgba(227, 242, 255, 0.7);
    color: var(--sixth-color);
    font-weight: 700;
    border-bottom: 1px solid rgba(30, 144, 255, 0.14);
    padding: 1rem 1.25rem;
    white-space: nowrap;
}

.cms-table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: top;
    border-color: rgba(30, 144, 255, 0.08);
    color: var(--seventh-color);
}

.cms-table tbody tr {
    transition: background 0.2s ease;
}

.cms-table tbody tr:hover {
    background: rgba(227, 242, 255, 0.35);
}

.cms-key-cell {
    font-weight: 700;
    color: var(--sixth-color) !important;
}

.cms-value-cell,
.cms-description-cell {
    max-width: 320px;
    word-break: break-word;
}

.cms-page-badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cms-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--seventh-color);
}

.cms-empty-state i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cms-empty-state h4 {
    margin-bottom: 0.75rem;
    color: var(--sixth-color);
}

.cms-edit-form .form-label {
    font-weight: 600;
    color: var(--sixth-color);
    margin-bottom: 0.5rem;
}

.cms-textarea {
    min-height: 160px;
    resize: vertical;
}

/* Product Manager */
/* Product Manager */

.product-manager-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pm-section-border {
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(30, 144, 255, 0.08);
    background: var(--white);
    box-shadow: var(--twelfth-color);
}

.pm-section-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.01em;
}

.pm-field {
    margin-bottom: 0;
}

.pm-grid-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.pm-hero-row {
    align-items: stretch;
}

.pm-primary-image,
.pm-primary-image .pm-image-title {
    height: 100%;
}

.pm-primary-image .pm-image-title {
    display: flex;
    flex-direction: column;
}

.pm-primary-image .pm-image-title img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: contain;
    border: 1px solid #d9dfeb;
    background: #f8fafc;
}

.pm-image-title {
    font-size: 0.75rem;
}

.pm-image-title img {
    width: 100%;
    height: 200px;
    border: 1px solid #d9dfeb;
    background: #f8fafc;
    overflow: hidden;
    display: block;
    text-align: center;
    color: var(--seventh-color);
    object-fit: contain;
}

.pm-panel {
    min-width: 0;
}

.pm-panel-bg {
    border: 1px solid #d9dfeb;
    background: #f8fafc;
}

.pm-action-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.pm-title-row {
    align-items: end;
}

.pm-title-row .pm-action-col {
    padding-bottom: 0;
}

.pm-fashion-select {
    max-width: 360px;
}

.pm-image-preview {
    min-height: 270px;
    border: 1px solid #d9dfeb;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--seventh-color);
    /* padding: 1rem; */
}

.pm-image-preview img {
    width: 100%;
    height: 270px;
    object-fit: contain;
    display: block;
}

.pm-image-preview--empty i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.pm-empty-upload-state {
    min-height: 160px;
    border: 1px dashed rgba(30, 144, 255, 0.2);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
    color: var(--seventh-color);
    padding: 1.25rem;
}

.pm-empty-upload-state i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.pm-background-highlight {
    padding: clamp(1rem, 2vw, 1.375rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 255, 0.9) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--twelfth-color);
}

.pm-hero-row .pm-background-highlight {
    height: 100%;
    max-height: 220px;
    /* overflow: auto; */
}

.pm-hero-row .pm-background-highlight.h-100 {
    /* height: 250px !important; */
    min-height: 0;
}

.pm-background-highlight-header {
    margin-bottom: 18px;
}

.pm-background-highlight p {
    color: var(--seventh-color);
}

/* Support current ProductManager markup + generic radio card markup */

.pm-background-tone-options,
.pm-background-horizontal-three,
.pm-background-horizontal-options,
.pm-radio-card-group {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

.pm-background-tone-options,
.pm-radio-card-group--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pm-background-horizontal-options,
.pm-radio-card-group--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-background-horizontal-three,
.pm-radio-card-group--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-background-horizontal-option,
.pm-radio-card-option {
    position: relative;
    display: block;
    margin: 0;
    cursor: pointer;
}

.pm-background-horizontal-option input[type="radio"],
.pm-radio-card-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pm-background-horizontal-card,
.pm-radio-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(30, 144, 255, 0.2);
    box-shadow: var(--twelfth-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    min-height: 84px;
}

.pm-background-horizontal-option:hover .pm-background-horizontal-card,
.pm-radio-card-option:hover .pm-radio-card {
    transform: translateY(-4px);
    box-shadow: var(--eleventh-color);
    border-color: rgba(30, 144, 255, 0.3);
}

.pm-background-horizontal-option.active .pm-background-horizontal-card,
.pm-radio-card-option.active .pm-radio-card {
    border-color: var(--secondary-color);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(214, 236, 255, 1) 100%);
    box-shadow: var(--eleventh-color);
}

.pm-background-horizontal-content,
.pm-radio-card-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pm-background-horizontal-title,
.pm-radio-card-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--sixth-color);
}

.pm-background-horizontal-text,
.pm-radio-card-text {
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--seventh-color);
}

.pm-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pm-upload-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(30, 144, 255, 0.12);
}

.pm-upload-section-title {
    font-size: 1.2rem;
    color: var(--sixth-color);
}

.pm-upload-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pm-upload-row {
    border: 1px solid rgba(30, 144, 255, 0.12);
    background: #f8fafc;
    padding: 1rem;
    box-shadow: var(--twelfth-color);
}

.pm-upload-row-header {
    margin-bottom: 0.85rem;
}

.pm-upload-row-title {
    font-weight: 700;
    color: var(--sixth-color);
}

.pm-upload-row-body {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.pm-upload-preview {
    min-height: 160px;
    border: 1px solid #d9dfeb;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.pm-upload-preview img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.pm-upload-preview-placeholder {
    color: var(--seventh-color);
}

.pm-upload-preview-placeholder i {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.pm-upload-control {
    min-width: 0;
}

.pm-image-preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--seventh-color);
    padding: 1rem;
}

.pm-image-preview-placeholder i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.pm-row-move-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pm-tags-section {
    margin-top: 1.25rem;
}

.pm-tags-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.pm-tags-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.pm-tag-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 0.5rem;
    align-items: stretch;
    min-width: 0;
}

.pm-tag-item .form-control {
    min-width: 0;
}

.pm-tag-delete-btn {
    width: 44px;
    min-height: 56px;
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.35);
    background: #fff4f4;
}

.pm-tag-delete-btn:hover,
.pm-tag-delete-btn:focus {
    color: #ffff;
    background: #dc3545;
    border-color: #dc3545;
}

@media (max-width: 991.98px) {
    .pm-tags-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .pm-tags-header {
        align-items: stretch;
        flex-direction: column;
    }

    .pm-tags-generate-btn {
        width: 100%;
    }

    .pm-tags-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Manager Responsive */

@media (max-width: 1199.98px) {
    .pm-background-horizontal-options,
    .pm-radio-card-group--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .pm-grid-row {
        grid-template-columns: 1fr;
    }

    .pm-action-col {
        justify-content: flex-start;
    }

    .pm-ai-btn {
        width: 100%;
    }

    .pm-hero-row .pm-background-highlight,
    .pm-hero-row .pm-background-highlight.h-100 {
        height: auto !important;
        max-height: none;
        overflow: visible;
    }

    .pm-background-tone-options,
    .pm-background-horizontal-options,
    .pm-radio-card-group--two,
    .pm-background-horizontal-three,
    .pm-radio-card-group--four {
        grid-template-columns: 1fr;
    }

    .pm-background-horizontal-card,
    .pm-radio-card {
        min-height: auto;
    }

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

    .pm-upload-row-body {
        grid-template-columns: 1fr;
    }

    .pm-row-move-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .pm-section-border {
        padding: 1rem;
    }

    .pm-primary-image .pm-image-title img {
        height: 220px;
        max-height: 220px;
    }

    .pm-tags-grid {
        grid-template-columns: 1fr;
    }

    .pm-empty-upload-state {
        flex-direction: column;
        text-align: center;
    }

    .pm-row-move-actions {
        flex-direction: column;
    }
}

/* Subscription / Stripe Embedded Checkout */

.payment-validation-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.35rem;
    min-height: 1.1rem;
}

.stripe-card-element.stripe-element-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.15);
}

.stripe-card-element.stripe-element-valid {
    border-color: #198754;
}

.subscription-section {
    background: #f8f9fa;
}

.subscription-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid rgba(30, 144, 255, 0.08);
    box-shadow: var(--twelfth-color);
}

.subscription-plan-summary {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 255, 0.9) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
}

.subscription-plan-summary h3 {
    margin-bottom: 0.5rem;
}

.subscription-plan-summary p {
    margin-bottom: 0;
    color: var(--seventh-color);
}

.stripe-card-element {
    min-height: 56px;
    padding: 17px 16px;
    background: var(--white);
    border: 1px solid var(--tenth-color);
}

.stripe-card-element.StripeElement--focus {
    border-color: var(--eighth-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 255, 0.15);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #dc3545;
}

.subscription-alert {
    padding: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subscription-alert-error {
    background: #fff4f4;
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.subscription-alert-success {
    background: #f0fff4;
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: #198754;
}

.subscription-secure-note {
    color: var(--seventh-color);
    font-size: 0.95rem;
}

.subscription-secure-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.subscription-empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--seventh-color);
}

.subscription-empty-state i {
    font-size: 2.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.subscription-empty-state h4 {
    margin-bottom: 0.5rem;
}

.saved-card-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(30, 144, 255, 0.12);
    background: #f8fafc;
    margin-bottom: 1rem;
}

.saved-card-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.25);
    font-size: 1.25rem;
}

.saved-card-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.saved-card-details strong {
    color: var(--sixth-color);
}

.saved-card-details span {
    color: var(--seventh-color);
    font-size: 0.92rem;
}

.saved-card-default-badge {
    display: inline-block;
    width: fit-content;
    margin-top: 0.4rem;
    padding: 0.25rem 0.55rem;
    background: rgba(30, 144, 255, 0.08);
    color: var(--secondary-color) !important;
    border: 1px solid rgba(30, 144, 255, 0.18);
    font-size: 0.78rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.saved-card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

@media (max-width: 767.98px) {
    .subscription-card {
        padding: 1.5rem;
    }

    .saved-card-row {
        grid-template-columns: 1fr;
    }

    .saved-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .saved-card-actions form,
    .saved-card-actions button {
        width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .pm-background-horizontal-options,
    .pm-radio-card-group--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .pm-grid-row {
        grid-template-columns: 1fr;
    }

    .pm-action-col {
        justify-content: flex-start;
    }

    .pm-ai-btn {
        width: 100%;
    }

    .pm-background-tone-options,
    .pm-background-horizontal-options,
    .pm-radio-card-group--two,
    .pm-background-horizontal-three,
    .pm-radio-card-group--four {
        grid-template-columns: 1fr;
    }

    .pm-background-horizontal-card,
    .pm-radio-card {
        min-height: auto;
    }

    .pm-upload-row-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .cms-toolbar-card,
    .cms-filter-card {
        padding: 1.5rem;
    }

    .cms-value-cell,
    .cms-description-cell {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .cms-section-heading {
        margin-bottom: 2rem;
    }

    .cms-toolbar-card,
    .cms-filter-card {
        padding: 1.25rem;
    }

    .cms-table thead th,
    .cms-table tbody td {
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 991.98px) {
    .auth-info-panel,
    .auth-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .auth-info-panel,
    .auth-card {
        padding: 1.5rem;
    }

    .auth-section-heading {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .login-card {
        padding: 1.5rem;
    }

    .login-page-title {
        line-height: 1.08;
    }
}

/* HOME PAGE RESPONSIVE */

@media (max-width: 991.98px) {
    #hero-section .hero-section-row {
        min-height: auto;
        padding: 5rem 0;
    }

    #customer-section .customer-card-media,
    #customer-section .customer-card-image {
        min-height: 280px;
    }

    #highlight-vert-section .highlight-section-image-primary {
        width: 100%;
        height: 560px;
    }

    #highlight-vert-section .highlight-section-image-accent {
        width: 42%;
        height: 220px;
    }

    #stats-section {
        padding: 120px 0;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 80px 0;
    }

    #customer-section .section-heading,
    #features-section .section-heading {
        margin-bottom: 2.25rem;
    }

    #customer-section .customer-card-body {
        padding: 1.35rem 1.2rem 1.25rem;
    }

    #customer-section .customer-step-item {
        padding: 18px;
    }

    #customer-section .customer-card-media,
    #customer-section .customer-card-image {
        min-height: 240px;
    }

    #highlight-vert-section .highlight-section-media {
        min-height: auto;
    }

    #highlight-vert-section .highlight-section-image-primary {
        width: 100%;
        height: auto;
    }

    #highlight-vert-section .highlight-section-image-accent {
        display: none;
    }

    #stats-section {
        padding: 100px 0;
    }

    #stats-section .stats-section-card {
        padding: 28px 18px;
    }

    #cta-section {
        padding: 120px 0 135px;
    }

    #cta-section::after {
        height: 110px;
    }

    #cta-section .container {
        padding: 2.5rem 1.5rem;
    }

    #cta-section h2 {
        line-height: 1.1;
    }
}

@media (max-width: 575.98px) {
    #customer-section .customer-step-badge {
        gap: 0.75rem;
    }

    #customer-section .customer-step-icon,
    #customer-section .customer-step-item-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    #customer-section .customer-step-label {
        min-width: 46px;
        padding: 0.4rem 0.55rem;
    }
}

/* Subscription Success */

.success-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.success-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-info-icon {
    flex: 0 0 28px;
    width: 28px;
    display: inline-flex;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.4;
    padding-top: 0.1rem;
}

.success-info-content {
    min-width: 0;
}

.success-info-content h5 {
    margin-bottom: 0.35rem;
    color: var(--sixth-color);
    /* font-weight: 700; */
}

.success-info-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 575.98px) {
    .success-info-item {
        gap: 0.85rem;
    }

    .success-info-icon {
        flex-basis: 24px;
        width: 24px;
    }
}

/* Subscription Plans Page */

.subscription-plans-page {
    background: radial-gradient(circle at top left, rgba(30, 144, 255, 0.08), transparent 28%), radial-gradient(circle at top right, rgba(106, 13, 173, 0.08), transparent 30%), #f8f9fa;
}

.subscription-current-summary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--eleventh-color);
}

.subscription-current-summary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(30, 144, 255, 0.08), transparent 25%), radial-gradient(circle at 85% 25%, rgba(106, 13, 173, 0.08), transparent 25%);
    pointer-events: none;
}

.subscription-current-summary > .row {
    position: relative;
    z-index: 1;
}

.subscription-summary-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.2);
    font-size: 1.25rem;
}

.subscription-plan-card {
    position: relative;
    border: 1px solid rgba(30, 144, 255, 0.08);
    overflow: hidden;
}

.subscription-plan-card-current {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(8, 12, 28, 0.18);
    border-color: rgba(25, 135, 84, 0.28);
}

.subscription-plan-card-current::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(25, 135, 84, 0.18);
    pointer-events: none;
}

.subscription-plan-tier-label {
    font-family: var(--main-font);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.45rem;
}

.subscription-plan-description {
    color: var(--seventh-color);
    min-height: 72px;
    margin-bottom: 0;
}

.subscription-plan-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.08), rgba(30, 144, 255, 0.24), rgba(30, 144, 255, 0.08));
    margin: 1.25rem 0 1.25rem;
}

.subscription-feature-list .success-info-item {
    padding: 0.25rem 0;
}

.subscription-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
}

.subscription-status-active {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-color: rgba(25, 135, 84, 0.18);
}

@media (max-width: 767.98px) {
    .subscription-plan-description {
        min-height: auto;
    }
}

.subscription-plans-shell {
    padding: 3.5rem 3rem;
    background: var(--white);
    border: 1px solid rgba(30, 144, 255, 0.08);
    box-shadow: var(--eleventh-color);
}

.subscription-plans-heading {
    margin-bottom: 3.25rem;
}

.subscription-current-summary {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--eleventh-color);
}

.subscription-summary-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.2);
    font-size: 1.25rem;
}

.subscription-plans-grid {
    margin-top: 0.25rem;
}

.subscription-plan-card {
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.subscription-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
    border-color: rgba(30, 144, 255, 0.18);
}

.subscription-plan-card-current {
    transform: translateY(-18px);
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.16);
    border-color: rgba(30, 144, 255, 0.18);
}

.subscription-plan-card-current:hover {
    transform: translateY(-22px);
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.18);
}

.subscription-plan-card .pricing-card-body {
    padding: 2.25rem 2rem 2rem;
}

.subscription-plan-tier-label {
    font-family: var(--accent-font);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.45rem;
}

.subscription-plan-description {
    color: var(--seventh-color);
    margin-bottom: 0;
    min-height: 72px;
}

.subscription-plan-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.08), rgba(30, 144, 255, 0.24), rgba(30, 144, 255, 0.08));
    margin: 1.5rem 0 1.35rem;
}

.subscription-feature-list {
    gap: 1rem;
    margin-bottom: 0;
}

.subscription-feature-list .success-info-item {
    padding: 0;
    gap: 0.9rem;
}

.subscription-feature-list .success-info-content h5 {
    margin-bottom: 0.3rem;
}

.subscription-feature-list .success-info-content p {
    margin-bottom: 0;
    /* font-size: 0.95rem; */
}

.subscription-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.subscription-status-active {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-color: rgba(25, 135, 84, 0.18);
}

@media (max-width: 1199.98px) {
    .subscription-plan-card-current {
        transform: translateY(-12px);
    }

    .subscription-plan-card-current:hover {
        transform: translateY(-16px);
    }
}

@media (max-width: 991.98px) {
    .subscription-plans-shell {
        padding: 2.5rem 2rem;
    }

    .subscription-plans-heading {
        margin-bottom: 2.5rem;
    }

    .subscription-plan-card .pricing-card-body {
        padding: 2rem 1.75rem 1.75rem;
    }

    .subscription-plan-card-current {
        transform: translateY(-8px);
    }

    .subscription-plan-card-current:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 767.98px) {
    .subscription-plans-shell {
        padding: 2rem 1.25rem;
    }

    .subscription-plans-heading {
        margin-bottom: 2rem;
    }

    .subscription-current-summary {
        margin-bottom: 2.25rem;
    }

    .subscription-plan-card,
    .subscription-plan-card:hover,
    .subscription-plan-card-current,
    .subscription-plan-card-current:hover {
        transform: none;
    }

    .subscription-plan-card .pricing-card-body {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .subscription-plan-description {
        min-height: auto;
    }
}

/* Subscription Status Page  */

.subscription-status-page {
    background: radial-gradient(circle at top left, rgba(30, 144, 255, 0.08), transparent 24%), radial-gradient(circle at top right, rgba(106, 13, 173, 0.08), transparent 28%), linear-gradient(180deg, #f8f9fa 0%, #eef5fb 100%);
}

.subscription-status-heading {
    margin-bottom: 2.5rem;
}

.subscription-status-hero {
    margin-bottom: 2rem;
}

.subscription-status-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
    border: 1px solid rgba(30, 144, 255, 0.14);
    box-shadow: var(--eleventh-color);
}

.subscription-status-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 15%, rgba(30, 144, 255, 0.10), transparent 24%), radial-gradient(circle at 90% 20%, rgba(106, 13, 173, 0.10), transparent 28%);
    pointer-events: none;
}

.subscription-status-hero-panel-content,
.subscription-status-mini-grid {
    position: relative;
    z-index: 1;
}

.subscription-status-hero-panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.subscription-status-hero-label,
.subscription-card-eyebrow {
    display: inline-block;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--accent-font);
    letter-spacing: 0.16em;
    margin-bottom: 0.5rem;
}

.subscription-status-hero-title {
    color: var(--sixth-color);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.subscription-status-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.subscription-status-mini-card {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 144, 255, 0.12);
    box-shadow: var(--twelfth-color);
    backdrop-filter: blur(8px);
}

.subscription-status-mini-card strong {
    display: block;
    color: var(--sixth-color);
    font-weight: 700;
}

.subscription-status-mini-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--seventh-color);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.subscription-status-page .subscription-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    padding: 2rem;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.subscription-status-page .subscription-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(30, 144, 255, 0.16);
}

.subscription-card-featured {
    overflow: hidden;
}

.subscription-card-featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.subscription-card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.subscription-card-header-block {
    margin-bottom: 0.25rem;
}

.subscription-card-intro {
    color: var(--seventh-color);
    max-width: 640px;
}

.subscription-card-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.12);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.subscription-card-icon:hover {
    background: rgba(30, 144, 255, 0.2);
    color: var(--primary-color);
    transform: scale(1.05);
}

.subscription-card-icon-lg {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
}

.subscription-empty-card {
    text-align: center;
}

.subscription-info-list {
    gap: 1rem;
}

.subscription-info-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(30, 144, 255, 0.08);
}

.subscription-info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.subscription-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    background: rgba(30, 144, 255, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.18);
    color: var(--secondary-color);
    padding-top: 0;
}

.subscription-reference {
    display: inline-block;
    max-width: 100%;
    padding: 0.38rem 0.65rem;
    background: rgba(30, 144, 255, 0.08);
    color: var(--sixth-color);
    border: 1px solid rgba(30, 144, 255, 0.14);
    font-size: 0.82rem;
    font-family: var(--accent-font);
    letter-spacing: 0.02em;
    word-break: break-all;
}

.subscription-alert {
    box-shadow: var(--twelfth-color);
}

.subscription-alert-elevated {
    margin-bottom: 1.5rem;
}

.subscription-alert-warning {
    background: #fff8e8;
    border: 1px solid rgba(255, 193, 7, 0.24);
    color: #9a6700;
}

.subscription-secure-caption {
    color: var(--seventh-color);
}

.subscription-payment-history-card {
    overflow: hidden;
}

.subscription-table-shell {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.7) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(30, 144, 255, 0.08);
}

.subscription-table-wrapper {
    overflow-x: auto;
}

.subscription-table {
    margin-bottom: 0;
}

.subscription-table thead th {
    background: rgba(227, 242, 255, 0.72);
    color: var(--sixth-color);
    font-weight: 700;
    border-bottom: 1px solid rgba(30, 144, 255, 0.14);
    padding: 1rem 1.1rem;
    white-space: nowrap;
    vertical-align: middle;
}

.subscription-table tbody td {
    padding: 1rem 1.1rem;
    vertical-align: middle;
    border-color: rgba(30, 144, 255, 0.08);
}

.subscription-table tbody tr {
    transition: background 0.2s ease;
}

.subscription-table tbody tr:hover {
    background: rgba(227, 242, 255, 0.28);
}

.table-striped-cus tbody tr:nth-of-type(even) {
    --bs-table-bg-type: rgba(30, 144, 255, 0.03);
}

.listing-table-img {
    max-height: 150px;
    max-width: 150px;
    padding: .6rem !important;
}

.listing-search {
    width: 200px !important;
}

.subscription-sort-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.subscription-sort-link:hover {
    color: var(--primary-color);
}

.subscription-table-primary-text {
    display: block;
    font-weight: 700;
    color: var(--sixth-color);
}

.subscription-table-muted-text {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.85rem;
    color: var(--seventh-color);
}

.subscription-payment-badge {
    padding: 0.5rem 0.7rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.subscription-page-size-form {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(30, 144, 255, 0.10);
    box-shadow: var(--twelfth-color);
}

.subscription-page-size-form .form-select {
    min-width: 84px;
    min-height: 42px;
}

.subscription-pagination .page-link {
    /* color: var(--primary-color); */
    border-color: rgba(30, 144, 255, 0.16);
    font-weight: 600;
    box-shadow: none;
}

/* .subscription-pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
} */

.subscription-pagination .page-link:hover {
    background: rgba(30, 144, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.24);
    color: #0d6efd;
}

/* .subscription-pagination .page-item.active .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
} */

.subscription-history-empty-state {
    padding: 3rem 1.5rem;
}

.subscription-status-trialing {
    background: rgba(13, 110, 253, 0.10);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.18);
}

.subscription-status-warning {
    background: rgba(255, 193, 7, 0.14);
    color: #9a6700;
    border-color: rgba(255, 193, 7, 0.25);
}

.subscription-status-canceled {
    background: rgba(220, 53, 69, 0.10);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.18);
}

.subscription-status-unknown {
    background: rgba(108, 117, 125, 0.10);
    color: #6c757d;
    border-color: rgba(108, 117, 125, 0.18);
}

@media (max-width: 991.98px) {
    .subscription-status-mini-grid {
        grid-template-columns: 1fr;
    }

    .subscription-card-header-row,
    .subscription-status-hero-panel-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .subscription-status-page .subscription-card {
        padding: 1.5rem;
    }

    .subscription-status-hero-panel {
        padding: 1.5rem;
    }

    .subscription-page-size-form {
        width: 100%;
        justify-content: space-between;
    }

    .subscription-page-size-form .form-select {
        max-width: 110px;
    }

    .subscription-pagination {
        flex-wrap: wrap;
    }

    .subscription-table thead th,
    .subscription-table tbody td {
        padding: 0.9rem 0.95rem;
    }
}

.subscription-table tbody tr:nth-of-type(even) {
    background-color: rgba(227, 242, 255, 0.22);
}

.subscription-table tbody tr:hover {
    background-color: rgba(227, 242, 255, 0.38);
}

.modal-content-prim-color {
    color: #1E90FF;
}

.details-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.sinewave-gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white) !important;
}

.sinewave-gradient-bg h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white) !important;
}

.sinewave-gradient-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,149.3C672,149,768,203,864,213.3C960,224,1056,192,1152,165.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

ul.checkmark {
    list-style: none;
    padding-left: 0;
}

ul.checkmark li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.25rem;
}

ul.checkmark li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--thirteenth-color);
    position: absolute;
    left: 0;
    top: 0.05rem;
    text-shadow:
        -1px 0 0 var(--thirteenth-color),
         1px 0 0 var(--thirteenth-color),
         0 -1px 0 var(--thirteenth-color),
         0 1px 0 var(--thirteenth-color);
}

/* FAQ */
.accordion-button-header {
        font-size: 1.75rem;
}
