* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #050509;
    color: #ffffff;
}

.site-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: #050509;
    border-bottom: 1px solid rgba(255,255,255,.12);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    font-style: italic;
	max-width:400px;
}

.site-header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
}

.hero {
    min-height: 650px;
    padding: 90px 48px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 0, 72, .55), transparent 24%),
        radial-gradient(circle at 62% 8%, rgba(145, 0, 255, .60), transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(0, 140, 255, .35), transparent 30%),
        linear-gradient(115deg, #050509 0%, #090010 48%, #150008 100%);
}


.hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -120px;
    height: 260px;
    background: radial-gradient(ellipse at center, rgba(255,0,60,.45), transparent 62%);
    filter: blur(30px);
    pointer-events: none;
}

.hero-software {
    display: grid;
    grid-template-columns: .85fr 1.35fr;
    gap: 52px;
    align-items: center;
}

.hero-content,
.hero-image-wrap {
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #ff3347;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(255,0,60,.8);
}

.hero h1 {
    font-size: 66px;
    line-height: 1.02;
    margin: 0 0 26px;
    letter-spacing: -2px;
    text-shadow: 0 0 35px rgba(0,0,0,.8);
}

.hero p {
    font-size: 22px;
    line-height: 1.55;
    color: #f0f0f0;
    max-width: 720px;
}

.hero-buttons {
    margin-top: 28px;
}

.hero-image-wrap {
    padding: 14px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.04)),
        linear-gradient(135deg, rgba(255,0,60,.35), rgba(110,0,255,.35));
    border: 1px solid rgba(255,255,255,.25);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.06),
        0 0 45px rgba(255,0,70,.35),
        0 0 85px rgba(110,0,255,.35),
        0 40px 100px rgba(0,0,0,.75);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.hero-image-wrap img {
    display: block;
    width: 100%;
    border-radius: 10px;
    filter: contrast(1.08) saturate(1.12);
}

.btn.primary {
    box-shadow: 0 0 28px rgba(255,0,50,.45);
	border: 1px solid rgba(255, 255, 255, .6);
}
.btn,
.card-button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    margin-right: 12px;
}

.primary {
    background: linear-gradient(135deg, #e9001b, #9a0018);
}

.secondary {
    border: 1px solid rgba(255,255,255,.6);
}

.products-section,
.features-section {
    padding: 58px 48px;
}

.products-section h2,
.features-section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    padding: 28px;
    min-height: 410px;
    border-radius: 12px;

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 18px 45px rgba(0,0,0,.45);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;
}

.product-card h3 {
    font-size: 25px;
    margin: 0 0 12px;
    text-shadow: 0 3px 12px rgba(0,0,0,1);
}

.product-card p {
    color: #fff;
    line-height: 1.5;
    text-shadow: 0 3px 12px rgba(0,0,0,1);
}

.product-card .price {
    margin: 18px 0 22px;
}

.product-card .card-button {
    margin-top: 0;
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(5px);
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 22px 0;
    color: #ff3347;
}

.product-card.blue .price {
    color: #3ba6ff;
}

.product-card.purple {
    border-color: rgba(170,70,255,.7);
}

.product-card.blue {
    border-color: rgba(50,150,255,.7);
}

.product-card.red {
    border-color: rgba(255,50,60,.7);
}

.card-button {
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.feature-card {
    text-align: center;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}

.feature-card {
    min-height: 185px;
}

.feature-icon {
    color: #ff3347;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 13px;
}

.feature-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.support-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 46px 48px;
    background: linear-gradient(90deg, rgba(120,0,140,.35), rgba(0,40,90,.35));
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.support-strip p {
    color: #ddd;
    max-width: 620px;
}

.site-footer {
    padding: 30px 48px;
    color: #aaa;
    text-align: center;
}

@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 18px;
        height: auto;
        display: block;
    }

    .site-header nav {
        margin-top: 0px;
    }

    .site-header nav a {
        display: inline-block;
        margin: 0 14px 10px 0;
    }

    .product-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .support-strip {
        display: block;
    }
}

.hero-software {
    display: grid;
    grid-template-columns: .9fr 1.35fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    color: #ff3347;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-image-wrap {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.hero-image-wrap img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.screenshot-features {
    padding: 20px 48px;
    background: radial-gradient(circle at 30% 0%, rgba(130,0,170,.22), transparent 35%);
}

.screenshot-features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 34px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.screenshot-card {
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    overflow: hidden;
}

.screenshot-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top left;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.screenshot-card div {
    padding: 22px;
}

.screenshot-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.screenshot-card p {
    color: #ccc;
    line-height: 1.5;
}

.why-section {
    padding: 70px 48px;
    text-align: center;
    background: linear-gradient(90deg, rgba(90,0,120,.25), rgba(0,30,80,.25));
}

.why-section h2 {
    font-size: 34px;
    margin-top: 0;
}

.why-section p {
    max-width: 900px;
    margin: 0 auto;
    color: #ddd;
    font-size: 19px;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .hero-software {
        grid-template-columns: 1fr;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}

.addons-section {
    padding: 40px 48px 70px;
    background: #050509;
}

.addons-section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.section-intro {
    max-width: 850px;
    margin: 0 auto 30px;
    text-align: center;
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.addon-card {

    min-height: 260px;

    padding: 28px;

    border-radius: 12px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(255,255,255,.16);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

.addon-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.addon-card p {
    color: #ddd;
    line-height: 1.5;
    margin: 0 0 14px;
}

.addon-card h3 {
    text-shadow: 0 3px 10px rgba(0,0,0,1);
}

.addon-card p {
    text-shadow: 0 3px 10px rgba(0,0,0,1);
}

.addon-card .card-button {
    margin-top: 20px;
}

.addon-price {
    color: #ff3347;
    font-weight: 800;
}

.addon-card.blue {
    border-color: rgba(50,150,255,.7);
}

.addon-card.purple {
    border-color: rgba(170,70,255,.7);
}

.addon-card .card-button {
    min-width: 210px;
    text-align: center;
}

@media (max-width: 800px) {
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .addon-card {
        display: block;
    }

    .addon-card .card-button {
        margin-top: 20px;
        width: 100%;
    }
}

.hero-live {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #000;
}

.hero-live > img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-live::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.72) 28%,
        rgba(0,0,0,.22) 55%,
        rgba(0,0,0,.06) 100%
    );
    pointer-events: none;
}

.hero-live-overlay {
    position: absolute;
    z-index: 2;
    top: 8%;
    left: 3.2%;
    max-width: 650px;
    color: #fff;
}

.hero-live-overlay .eyebrow {
    color: #ff1d35;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 18px;
}

.hero-live-overlay h1 {
    font-size: 64px;
    line-height: 1.02;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-live-overlay h1 span {
    color: #ff1d35;
    display: block;
}

.hero-live-overlay p {
    font-size: 22px;
    line-height: 1.55;
    color: #eeeeee;
    margin-bottom: 28px;
}

.hero-feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.hero-feature-row div {
    border-right: 1px solid rgba(255,255,255,.35);
    padding-right: 18px;
    text-align: center;
}

.hero-feature-row div:last-child {
    border-right: none;
}

.hero-feature-row strong {
    display: block;
    font-size: 34px;
    margin-bottom: 12px;
}

.hero-feature-row span {
    display: block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .hero-live {
        min-height: 720px;
    }

    .hero-live > img {
        min-height: 720px;
        object-position: 65% center;
    }

    .hero-live-overlay h1 {
        font-size: 46px;
    }

    .hero-live-overlay {
        max-width: 560px;
    }

    .hero-feature-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-hero {

    position: relative;

    height: 650px;

    overflow: hidden;
}

.product-hero img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.product-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left: 6%;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.55),
            rgba(0,0,0,.15)
        );

    max-width: 700px;
}

.product-overlay h1 {

    font-size: 64px;

    margin-bottom: 20px;
}

.product-overlay p {

    font-size: 22px;

    line-height: 1.6;

    color: #ddd;

    margin-bottom: 30px;
}

.product-content {

    padding: 80px 40px;
}

.content-wrapper {

    max-width: 1100px;

    margin: auto;
}

.feature-box {

    padding: 30px;

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

    border-radius: 10px;

    border:
        1px solid rgba(255,255,255,.12);
}

.site-footer {

    background: #050509;

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 60px 40px 25px;

    margin-top: 80px;
}

.footer-grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 40px;
}

.footer-grid h4 {

    margin-bottom: 18px;

    color: #fff;

    font-size: 22px;
}

.footer-grid p {

    color: #bdbdbd;

    line-height: 1.8;
}

.footer-grid ul {

    list-style: none;

    margin: 0;

    padding: 0;
}

.footer-grid li {

    margin-bottom: 10px;
}

.footer-grid a {

    color: #d0d0d0;

    text-decoration: none;

    transition: .2s;
}

.footer-grid a:hover {

    color: #ff3045;
}

.footer-bottom {

    max-width: 1400px;

    margin: 40px auto 0;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.08);

    text-align: center;

    color: #8c8c8c;

    font-size: 15px;
}

.product-sales-hero {
    position: relative;
    overflow: hidden;
    background: #000;
}

.product-sales-hero > img {
    width: 100%;
    min-height: 720px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-sales-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.65), rgba(0,0,0,.12));
}

.product-sales-overlay {
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 5%;
    max-width: 960px;
    color: #fff;
}

.product-sales-overlay h1 {
    font-size: 62px;
    line-height: 1.03;
    margin: 0 0 24px;
}

.product-sales-overlay p {
    font-size: 23px;
    line-height: 1.55;
    color: #eee;
}

.sales-section {
    padding: 0px 48px;
    background: #050509;
}

.sales-section h2,
.why-product-section h2,
.product-cta h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
}

.sales-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sales-feature-grid article {
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    overflow: hidden;
}

.sales-feature-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: top left;
    display: block;
}

.sales-feature-grid h3,
.sales-feature-grid p {
    padding-left: 24px;
    padding-right: 24px;
}

.sales-feature-grid h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.sales-feature-grid p {
    color: #ccc;
    line-height: 1.6;
    padding-bottom: 24px;
}

.lineup-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 46px;
    align-items: center;
    padding: 80px 48px;
    background: linear-gradient(90deg, rgba(100,0,120,.22), rgba(0,40,100,.22));
}

.lineup-section h2 {
    font-size: 42px;
    margin-top: 0;
}

.lineup-section p {
    color: #ddd;
    font-size: 21px;
    line-height: 1.65;
}

.lineup-section img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.why-product-section {
    padding: 80px 48px;
    background: #050509;
}

.check-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.check-grid span {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 18px;
    font-weight: 800;
}

.product-cta {
    text-align: center;
    padding: 80px 48px;
    background: radial-gradient(circle at center, rgba(255,0,60,.28), transparent 42%), #050509;
}

.product-cta p {
    color: #ddd;
    font-size: 22px;
}

.product-cta .price {
    font-size: 38px;
    color: #ff3045;
    font-weight: 900;
    margin: 20px 0 30px;
}

@media (max-width: 1000px) {
    .sales-feature-grid,
    .lineup-section,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .product-sales-overlay h1 {
        font-size: 44px;
    }
}

.headerlogo {
	max-width: 100%;
	max-height:70px;
}

.years-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 14px;
    border-radius:999px;

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

    border:1px solid rgba(155,77,255,.45);

    color:#ddd;

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

    backdrop-filter:blur(10px);
}

.years-number {
    color: #ff3045;
    font-weight: 800;
	font-size:1.3em;
}

.cart-link {
    position: relative;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: 6px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff3045;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.upgrade-promo {
    text-align: center;
    padding: 70px 48px;
    background: linear-gradient(90deg, rgba(120,0,160,.22), rgba(0,40,100,.22));
}

.upgrade-promo h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.upgrade-promo p {
    color: #ddd;
    font-size: 20px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.upgrade-modal {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #121826;
	color:#cfd6e4;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 30px 90px rgba(0,0,0,.75);
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.upgrade-modal label {
    display: block;
    margin: 18px 0 7px;
    font-weight: 800;
}

.upgrade-modal input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 17px;
}

.upgrade-message {
    margin: 18px 0;
    font-weight: 800;
}

.upgrade-message .success {
    color: #5cff9d;
}

.upgrade-message .error {
    color: #ff5c70;
}

.cart-page {
    padding: 80px 48px;
    background: #050509;
    min-height: 650px;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-container h1 {
    font-size: 48px;
    margin-bottom: 32px;
}

.cart-empty {
    color: #ddd;
    font-size: 20px;
}

.cart-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    color: #fff;
    background: rgba(255,255,255,.06);
    padding: 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 20px 18px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #ddd;
    vertical-align: top;
}

.cart-table strong {
    color: #fff;
}

.cart-desc {
    margin-top: 6px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.4;
}

.cart-remove {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
}

.cart-remove:hover {
    border-color: #ff3045;
    color: #ff3045;
}

.cart-summary {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.cart-summary div {
    font-size: 20px;
}

.cart-summary span {
    color: #aaa;
    margin-right: 12px;
}

.cart-summary strong {
    color: #fff;
    font-size: 34px;
}

.discount-form {
    margin-top: 28px;
    max-width: 420px;
}

.discount-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.discount-form div {
    display: flex;
    gap: 10px;
}

.discount-form input {
    flex: 1;
    padding: 13px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.cart-discount {
    margin-top: 6px;
    color: #5cff9d;
    font-size: 13px;
    font-weight: 800;
}

.cart-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin: 0 0 24px;
    font-weight: 800;
}

.cart-alert.success {
    margin: auto;
    margin-top: 10px;
    background: rgba(92, 255, 157, .12);
    border: 1px solid rgba(92, 255, 157, .45);
    color: #5cff9d;
    width: 600px;
}

.cart-alert.error {
    background: rgba(255,48,69,.12);
    border: 1px solid rgba(255,48,69,.45);
    color: #ff5c70;
}

.cart-addon-offer {
    margin-top: 36px;
    padding: 28px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(120,0,160,.22), rgba(0,40,100,.22));
    border: 1px solid rgba(255,255,255,.12);
}

.cart-addon-offer h2 {
    margin-top: 0;
    font-size: 28px;
}

.cart-addon-offer p {
    color: #ddd;
}

.cart-addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.cart-addon-card {
    padding: 22px;
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
	background-position-y: center;
}

.cart-addon-card h3 {
    margin-top: 0;
}

.cart-addon-card p {
    color: #ccc;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .cart-addon-grid {
        grid-template-columns: 1fr;
    }
}

.cart-addon-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.regular-price {
    color: #bbb;
    text-decoration: line-through;
    font-size: 18px;
}

.discounted-price {
    color: #5cff9d;
    font-size: 28px;
    font-weight: 900;
}

.discount-label {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(92,255,157,.12);
    border: 1px solid rgba(92,255,157,.42);
    color: #5cff9d;
    font-size: 13px;
    font-weight: 800;
}

.ack-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 22px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
}

.ack-check input {
    width: auto;
    margin-top: 5px;
}

.support-hero {
    padding: 20px 48px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.65)),
        radial-gradient(circle at 72% 18%, rgba(155,77,255,.42), transparent 34%),
        radial-gradient(circle at 86% 60%, rgba(255,48,69,.28), transparent 32%),
        #050509;
}

.support-hero-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.support-hero h1 {
    font-size: 62px;
    margin: 0 0 22px;
}

.support-hero p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.55;
    max-width: 850px;
    margin: 0 auto 34px;
}

.support-search {
    display: flex;
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.07);
}

.support-search input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 17px;
}

.support-search button {
    padding: 0 28px;
    border: none;
    background: #ff3045;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.support-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 70px 48px;
    background: #050509;
}

.support-card {
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.support-card.featured {
    border-color: rgba(255,48,69,.55);
    background:
        radial-gradient(circle at 100% 0%, rgba(255,48,69,.25), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.support-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(155,77,255,.18);
    border: 1px solid rgba(155,77,255,.55);
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 20px;
}

.support-card h2 {
    font-size: 25px;
    margin: 0 0 12px;
}

.support-card p {
    color: #ccc;
    line-height: 1.6;
    min-height: 78px;
}

.support-notice {
    display: grid;
    grid-template-columns: 1.6fr .8fr;
    gap: 34px;
    padding: 65px 48px;
    background: linear-gradient(90deg, rgba(120,0,160,.20), rgba(0,40,100,.20));
    border-top: 1px solid rgba(255,255,255,.08);
}

.support-notice > div {
    max-width: 900px;
}

.support-notice h2,
.support-notice h3 {
    margin-top: 0;
}

.support-notice p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 850px) {
    .support-notice {
        grid-template-columns: 1fr;
    }

    .support-search {
        border-radius: 16px;
        flex-direction: column;
    }

    .support-search button {
        padding: 16px;
    }
}

.support-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card p {
    flex: 1;
}

.support-card .btn {
    align-self: flex-start;
}

.downloads-page {
    padding: 0px 48px;
    background: #050509;
}

.downloads-container {
    max-width: 1300px;
    margin: 0 auto;
}

.download-group-title {
    margin: 48px 0 22px;
    padding: 14px 18px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(155,77,255,.25), rgba(255,48,69,.18));
    border: 1px solid rgba(255,255,255,.12);
    font-size: 24px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

.download-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 245px;
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.download-card h3 {
    margin: 0 0 16px;
    font-size: 24px;
}

.download-meta {
    color: #d0d0d0;
    line-height: 1.7;
}

.download-meta strong {
    color: #fff;
}

.download-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.downloads-title-block {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 50px 24px 0px;
}

.downloads-title-block .eyebrow {
    justify-content: center;
}

.downloads-title-block h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.downloads-title-block p {
    color: #ddd;
    font-size: 19px;
    line-height: 1.6;
}

.download-search-input {
    width: 100%;
    max-width: 520px;
    margin-top: 24px;
    padding: 15px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.07);
    color: #fff;
    font-size: 16px;
}

.download-status-badge {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.status-public-release {
    background: rgba(92,255,157,.12);
    border: 1px solid rgba(92,255,157,.40);
    color: #5cff9d;
}

.status-beta {
    background: rgba(255,183,77,.12);
    border: 1px solid rgba(255,183,77,.40);
    color: #ffb74d;
}

.status-legacy {
    background: rgba(135,206,250,.12);
    border: 1px solid rgba(135,206,250,.40);
    color: #87cefa;
}

.status-retired,
.status-discontinued {
    background: rgba(180,180,180,.12);
    border: 1px solid rgba(180,180,180,.40);
    color: #bcbcbc;
}

.download-section-title {
    max-width: 1300px;
    margin: 60px auto 24px;
    font-size: 34px;
    color: #fff;
}

.release-notes-modal {
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
}

.release-notes-content,
#kbModalContent {
    background: #16181d;
    color: #d8d8d8;
    padding: 30px;
    line-height: 1.8;
}

.release-notes-content h1,
.release-notes-content h2,
.release-notes-content h3 {
    color: #fff;
}

.release-notes-content a {
    color: #9b4dff;
}

.release-notes-content {
    color: #ddd;
    line-height: 1.75;
    font-size: 16px;
}

.release-center {
    text-align: center;
}

.release-version {
    margin: 28px 0 10px;
    color: #fff;
    font-weight: 900;
}

.release-notes-content u,
.release-notes-content b {
    color: #fff;
}

.release-notes-content br {
    display: block;
    margin-bottom: 8px;
    content: "";
}

.release-notes-modal {
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.release-notes-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0px 24px;

    background: #050509;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.release-notes-content {
    overflow-y: auto;
    padding: 24px;
    flex: 1;
}

.release-notes-header .modal-close {
    position: static;
    flex-shrink: 0;
}

.faq-page {
    padding: 60px 48px 90px;
    background: #050509;
}

.faq-container {
    max-width: 1050px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.13);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.faq-question strong {
    color: #ff3045;
    font-size: 28px;
    line-height: 1;
}

.faq-answer {
    display: none;
    padding: 0 26px 26px;
    color: #ddd;
    font-size: 17px;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question strong {
    transform: rotate(45deg);
}

.kb-page {
    padding: 60px 48px 90px;
    background: #050509;
}

.kb-container {
    max-width: 1300px;
    margin: 0 auto;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.kb-card {
    min-height: 245px;
    padding: 26px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kb-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(155,77,255,.16);
    border: 1px solid rgba(155,77,255,.45);
    color: #caa8ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.kb-card h2 {
    font-size: 22px;
    margin: 0 0 14px;
}

.kb-keywords {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.kb-modal {
    max-width: 950px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.release-notes-footer {
    padding: 8px 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    background: #050509;
    text-align: right;
}

.kb-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.kb-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 0px 22px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.11);
}

.kb-row h2 {
    color: #ffffff;
    transition: all .15s ease;
	font-size:1.2em;
	font-weight:300;
}

.kb-row:hover h2 {
    color: #ff3045;
}

.kb-row p {
    color: #8fa0bd;
}

.kb-row {
    border-left: 3px solid rgba(255,48,69,.25);
}

.kb-row:hover {
    border-left-color: #ff3045;
}

.kb-row .btn {
    white-space: nowrap;
    flex-shrink: 0;
	color:black;
}

@media (max-width: 900px) {
    .kb-list {
        grid-template-columns: 1fr;
    }

    .kb-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

.kb-article-page {
    padding: 80px 48px;
    background: #050509;
}

.kb-article-container {
    max-width: 950px;
    margin: 0 auto;
}

.kb-back-link {
    display: inline-block;
    margin-bottom: 28px;
    color: #ff3045;
    text-decoration: none;
    font-weight: 800;
}

.kb-article-container h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.kb-article-content {
    background: #fafafa;
    color: #222;
    padding: 42px;
    border-radius: 14px;
    line-height: 1.75;
    font-size: 17px;
}

.kb-article-content h1,
.kb-article-content h2,
.kb-article-content h3 {
    color: #111;
}

.kb-article-content a {
    color: #d71935;
}

.kb-copy-link {
    color: #8090a8;
    font-size: 13px;
    text-decoration: none;
}

.kb-copy-link:hover {
    color: #ff3045;
}

.videos-page {
    padding: 60px 48px 90px;
    background: #050509;
}

.videos-container {
    max-width: 1300px;
    margin: 0 auto;
}

.video-group {
    margin-bottom: 54px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
}

.video-card {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.video-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
}

.video-card-body {
    padding: 24px;
}

.video-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.video-card p {
    color: #ccc;
    line-height: 1.55;
    min-height: 70px;
}

.video-duration {
    color: #8fa0bd;
    font-weight: 800;
    margin: 14px 0 20px;
}

.video-placeholder {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    letter-spacing: 1px;

    color: #ff3045;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.support-breadcrumb {
    max-width: 1300px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.support-breadcrumb a {
    color: #8090a8;
    text-decoration: none;
    font-weight: 700;
    transition: color .15s ease;
}

.support-breadcrumb a:hover {
    color: #ff3045;
}

.support-form-page {
    padding: 50px 48px 90px;
    background: #050509;
}

.support-form-container {
    max-width: 1050px;
    margin: 0 auto;
}

.support-request-form {
    padding: 34px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.13);
}

.support-resource-confirm {
    padding: 22px;
    margin-bottom: 28px;
    border-radius: 12px;
    background: rgba(155,77,255,.10);
    border: 1px solid rgba(155,77,255,.35);
}

.support-resource-confirm label {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    line-height: 1.6;
}

.support-resource-confirm input {
    margin-top: 6px;
}

.support-resource-confirm a {
    color: #ff3045;
    font-weight: 800;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.support-request-form label {
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 22px;
}

.support-request-form input,
.support-request-form select,
.support-request-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 16px;
}

.support-request-form option {
    color: #000;
}

.support-request-form textarea {
    resize: vertical;
}

@media (max-width: 800px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

.support-resource-confirm label,
.support-ack-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 18px !important;
    cursor: pointer;
}

.support-ack-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
}

.support-ack-content {
    flex: 1;
}

.support-ack-content strong {
    display: block;
    margin-bottom: 10px;
}

.support-links a {
    color: #d8d8d8;
    text-decoration: underline;
}

.support-links a:hover {
    color: #ff3045;
}

.support-policy-notice {
    padding: 28px 48px;
    background: rgba(255,48,69,.08);
    border-top: 1px solid rgba(255,48,69,.22);
    border-bottom: 1px solid rgba(255,48,69,.22);
	text-align:center;
}

.support-policy-notice div {
    max-width: 1100px;
    margin: 0 auto;
}

.support-policy-notice h2 {
    margin: 0 0 8px;
    color: #fff;
}

.support-policy-notice p {
    margin: 0;
    color: #ddd;
    line-height: 1.6;
}

.support-search-results {
    padding: 60px 48px 90px;
    background: #050509;
}

.support-search-container {
    max-width: 1050px;
    margin: 0 auto;
}

.search-result-card {
    padding: 22px 26px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.11);
}

.search-result-card h3 {
    margin: 0 0 10px;
}

.search-result-card p {
    color: #aaa;
    line-height: 1.5;
}

.search-result-card a {
    color: #ff3045;
    font-weight: 800;
}

.support-policy-section {
    padding: 0px 24px;
}

.support-policy-card {
    max-width: 950px;
    margin: 0 auto;

    padding: 40px 50px;

    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(60,20,90,.55),
        rgba(80,0,20,.55)
    );

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.support-policy-card h2 {
    margin: 0 0 18px;
    color: #fff;
}

.support-policy-card p {
    max-width: 800px;
    margin: 0 auto 18px;
    line-height: 1.7;
    color: #ddd;
}

.support-policy-card p:last-child {
    margin-bottom: 0;
}

.product-legal-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-resource-link {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.hero-resource-link:hover {
    border-color: #ff3045;
    color: #ff3045;
}

.btn-demo {
    background: linear-gradient(135deg,#6a11cb,#2575fc);
    color:#fff;
    box-shadow:0 0 20px rgba(37,117,252,.4);
}

.btn-demo {
    padding: 16px 28px;
}

.btn-buy {
    padding: 16px 22px;
}

.btn i.fa-windows {
    margin-right: 8px;
    color: #00A4EF;
}

.checkout-divider {
    margin: 36px 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,.12);
}

.checkout-check {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin: 18px 0 28px;
    font-weight: 800;
}

.checkout-check input[type="checkbox"] {
    width: 22px;
    height: 22px;
}

.hidden {
    display: none !important;
}

.checkout-eula-box {
    padding: 26px;
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.13);
}

.checkout-eula-box h2 {
    margin-top: 0;
}

.checkout-eula-box p {
    color: #ddd;
    line-height: 1.6;
}

.checkout-eula-box .btn {
    margin: 10px 12px 18px 0;
}

.checkout-summary-box {
    padding: 26px;
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.13);
}

.checkout-summary-box h2 {
    margin-top: 0;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    align-items: center;
}

.checkout-summary-note {
    margin-top: 6px;
    color: #9fb0cc;
    font-size: 14px;
}

.checkout-summary-price {
    font-weight: 900;
    color: #fff;
}

.checkout-regular-price {
    display: block;
    color: #aaa;
    text-decoration: line-through;
    font-size: 13px;
}

.checkout-summary-total {
    margin-top: 24px;
    max-width: 360px;
    margin-left: auto;
}

.checkout-summary-total div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.checkout-summary-total .grand-total {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.2);
    font-size: 24px;
}

@media (max-width: 700px) {
    .checkout-summary-item {
        grid-template-columns: 1fr;
    }
}

.thank-you-page {
    padding: 90px 48px;
    background:
        radial-gradient(circle at 75% 15%, rgba(155,77,255,.28), transparent 35%),
        radial-gradient(circle at 20% 80%, rgba(255,48,69,.18), transparent 32%),
        #050509;
    min-height: 720px;
}

.thank-you-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
    text-align: center;
}

.thank-you-card h1 {
    font-size: 48px;
    margin: 12px 0 16px;
}

.thank-you-lead {
    font-size: 22px;
    color: #ddd;
}

.thank-you-order {
    display: inline-block;
    margin: 18px 0 26px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(92,255,157,.12);
    border: 1px solid rgba(92,255,157,.36);
    color: #5cff9d;
}

.email-notice,
.activation-summary {
    margin-top: 34px;
    padding: 28px;
    border-radius: 16px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.12);
    text-align: left;
}

.email-notice h2,
.activation-summary h2 {
    margin-top: 0;
    text-align: center;
}

.email-notice li,
.email-notice p {
    color: #ddd;
    line-height: 1.7;
}

.activation-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.activation-row:last-child {
    border-bottom: none;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .thank-you-card {
        padding: 32px 24px;
    }

    .activation-row {
        flex-direction: column;
        text-align: center;
    }
}

#payButton:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.sales-success {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(255,40,80,.08),
            rgba(120,40,255,.08)
        );

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ff3045,
        #a03dff
    );

    color: #fff;
    font-size: 42px;
    font-weight: 700;

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

.sales-success h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-lead {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
}

.success-note {
    margin: 30px auto;
    max-width: 320px;

    padding: 20px;

    border-radius: 12px;

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

    border: 1px solid rgba(255,255,255,.08);
}

.success-small {
    color: #b8b8b8;
    font-size: .95rem;
    margin-top: 20px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 36px;
    height: 28px;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    border-radius: 3px;
    background: #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 1130px) {
    .years-badge {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        right: 20px;
        min-width: 230px;
        padding: 10px;
        border-radius: 14px;
        background: rgba(10,10,20,.98);
        border: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 20px 50px rgba(0,0,0,.45);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 9999;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        display: block;
        padding: 13px 16px;
        border-radius: 8px;
        text-align: left;
    }

    .main-nav a:hover {
        background: rgba(255,255,255,.08);
    }
}

.site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

@media (max-width: 900px) {
    .site-header {
        min-height: 82px;
        padding: 12px 18px;
    }

    .header-left {
        flex: 1;
        min-width: 0;
    }

    .headerlogo {
        max-width: 250px;
        height: auto;
    }

    .mobile-menu-toggle {
        margin-left: auto;
        flex-shrink: 0;
    }

    .main-nav {
        top: calc(100% + 10px);
        right: 18px;
    }
}

@media (max-width: 520px) {
    .headerlogo {
        max-width: 220px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        top: calc(100% + 8px);
        right: 14px;
        min-width: 210px;
        max-width: calc(100vw - 28px);
    }
}

@media (max-width: 520px) {
    .main-nav {
        left: 14px;
        right: 14px;
        width: auto;
        min-width: 0;
    }
}

/* Mobile typography */

@media (max-width: 900px) {

    body {
        font-size: 15px;
    }

    h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.1;
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }

    .hero-content p,
    .page-hero p,
    .product-description {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {

    .hero h1,
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 4rem);
        line-height: 1.05;
    }
}

@media (max-width: 520px) {

    .hero h1,
    .hero-title {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }
	
	.product-sales-hero {
   min-height:860px
    }
}

@media (max-width: 900px) {

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
		margin-bottom:10px;
    }
}

@media (max-width: 900px) {

    .hero-live {
        min-height: auto;
    }

    .hero-live-overlay {
        width: 100%;
        max-width: none;
        padding: 32px 18px 34px;
    }

    .hero-live .eyebrow img {
        width: 220px !important;
        max-width: 80%;
    }

    .hero-live h1 {
        font-size: clamp(2.25rem, 9vw, 3.8rem);
        line-height: 1.04;
        max-width: 100%;
    }

    .hero-live h1 span {
        display: block;
    }

    .hero-live p {
        font-size: 1.05rem;
        line-height: 1.45;
        max-width: 100%;
    }

    .hero-live .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-live .hero-buttons .btn {
        justify-content: center;
        text-align: center;
		margin-top: 10px;
    }
	
	.upgrade-modal {
	scale:70%;
	}
	
	
    }

    .hero-feature-row {
        display: none;
    }
	
	
	
}

@media (max-width: 900px) {

    .product-sales-hero {
        min-height: auto;
        padding: 36px 18px;
    }

    .product-sales-hero h1 {
        font-size: clamp(2.1rem, 8vw, 3.6rem);
        line-height: 1.06;
    }

    .product-sales-hero p {
        font-size: 1.05rem;
        line-height: 1.45;
    }

    .product-sales-hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .product-sales-hero .hero-buttons .btn {
        width: 70%;
        justify-content: center;
        text-align: center;
		margin-top:10px;
    }
	
}

.legacy-html-viewer {
    color: #fff;
    line-height: 1.6;
}

.legacy-html-viewer table {
    max-width: 100%;
}

.legacy-html-viewer img {
    max-width: 100%;
    height: auto;
}

.legacy-html-viewer a {
    color: #ff4d6d;
}