/* =========================================================
   Chunar Digital Media / CDMedia
   Polished Final CSS - Live Safe Version
   Source: style(2)(1).css
   Method: Preserved all unique CSS rules, removed exact duplicate
   rule blocks and exact duplicate declarations only.
   ========================================================= */

:root {
    --cd-primary: #e50914;
    --cd-secondary: #050505;
    --cd-white: #ffffff;
    --cd-black: #050505;
    --cd-dark: #101010;
    --cd-dark-2: #171717;
    --cd-muted: #6b7280;
    --cd-muted-light: #d1d5db;
    --cd-border: rgba(0, 0, 0, 0.08);
    --cd-border-light: rgba(255, 255, 255, 0.12);
    --cd-bg: #ffffff;
    --cd-bg-soft: #f6f6f6;
    --cd-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
    --cd-shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.08);
    --cd-radius-sm: 12px;
    --cd-radius-md: 18px;
    --cd-radius-lg: 28px;
    --cd-transition: all 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cd-black);
    background: var(--cd-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--cd-transition);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    color: var(--cd-white);
    background: var(--cd-primary);
}

.cd-main {
    overflow: hidden;
}

.cd-section {
    position: relative;
    padding: 100px 0;
}

.cd-section:nth-child(even) {
    background: var(--cd-bg-soft);
}

.cd-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.cd-section-heading h2, .cd-about-content h2, .cd-mobile-content h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--cd-black);
}

.cd-section-heading p, .cd-about-content p, .cd-mobile-content p {
    margin: 16px 0 0;
    color: var(--cd-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--cd-primary);
    background: rgba(229, 9, 20, 0.09);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cd-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cd-primary);
}

.cd-btn-primary, .cd-btn-outline, .cd-btn-light {
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid transparent;
    transition: var(--cd-transition);
}

.cd-btn-primary {
    color: var(--cd-white) !important;
    background: var(--cd-primary);
    border-color: var(--cd-primary);
    box-shadow: 0 14px 30px rgba(229, 9, 20, 0.28);
}

.cd-btn-primary:hover {
    color: var(--cd-white) !important;
    background: var(--cd-secondary);
    border-color: var(--cd-secondary);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.cd-btn-outline {
    color: var(--cd-white) !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.cd-btn-outline:hover {
    color: var(--cd-black) !important;
    background: var(--cd-white);
    border-color: var(--cd-white);
    transform: translateY(-2px);
}

.cd-btn-light {
    color: var(--cd-black) !important;
    background: var(--cd-white);
    border-color: var(--cd-white);
}

.cd-btn-light:hover {
    color: var(--cd-white) !important;
    background: var(--cd-primary);
    border-color: var(--cd-primary);
    transform: translateY(-2px);
}

.cd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
    font-size: 1.45rem;
    background: rgba(229, 9, 20, 0.09);
}

.cd-icon-sm {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
    font-size: 1.1rem;
}

.cd-icon-lg {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
    border-radius: 20px;
    font-size: 1.75rem;
}

.cd-icon-primary {
    color: var(--cd-primary);
    background: rgba(229, 9, 20, 0.1);
}

.cd-icon-secondary {
    color: var(--cd-white);
    background: var(--cd-secondary);
}

.cd-icon-white {
    color: var(--cd-primary);
    background: var(--cd-white);
}

.cd-navbar {
    padding: 18px 0;
    background: transparent;
    transition: var(--cd-transition);
    z-index: 1000;
}

.cd-navbar.cd-navbar-scrolled, body:not(.home) .cd-navbar {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.cd-brand-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.cd-logo-dark {
    display: none;
}

.cd-nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 800;
    padding: 10px 14px !important;
}

.cd-nav-menu .nav-link:hover, .cd-nav-menu .nav-link.active {
    color: var(--cd-white);
}

.cd-navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.cd-navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.cd-hero-section {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 90px;
    color: var(--cd-white);
    background: radial-gradient(circle at top left, rgba(229, 9, 20, 0.26), transparent 35%),
        linear-gradient(135deg, var(--cd-secondary), #151515);
    overflow: hidden;
}

.cd-hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.38;
    filter: blur(10px);
}

.cd-hero-orb-one {
    width: 360px;
    height: 360px;
    right: -110px;
    top: 120px;
    background: var(--cd-primary);
}

.cd-hero-orb-two {
    width: 250px;
    height: 250px;
    left: -80px;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.16);
}

.cd-hero-card {
    position: relative;
    padding: 48px;
    min-height: 620px;
    display: flex;
    align-items: center;
    border: 1px solid var(--cd-border-light);
    border-radius: var(--cd-radius-lg);
    background-color: rgba(255, 255, 255, 0.04);
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.cd-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%),
        radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.18), transparent 32%);
    pointer-events: none;
}

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

.cd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--cd-white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cd-hero-content h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.cd-hero-content h1 span {
    display: block;
    color: var(--cd-primary);
}

.cd-hero-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    line-height: 1.8;
}

.cd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cd-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cd-hero-stats div {
    min-width: 118px;
    padding: 14px 18px;
    border: 1px solid var(--cd-border-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.cd-hero-stats strong {
    display: block;
    color: var(--cd-white);
    font-size: 1.35rem;
    font-weight: 950;
}

.cd-hero-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.cd-hero-image-wrap {
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-hero-image {
    width: min(100%, 430px);
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.45));
}

.cd-hero-floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid var(--cd-border-light);
    border-radius: 18px;
    color: var(--cd-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.cd-hero-floating-card i {
    color: var(--cd-primary);
    font-size: 1.2rem;
}

.cd-hero-float-one {
    top: 50px;
    left: 0;
}

.cd-hero-float-two {
    right: 0;
    bottom: 70px;
}

.cd-hero-control {
    width: 46px;
    height: 46px;
    top: auto;
    bottom: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.carousel-control-prev.cd-hero-control {
    left: auto;
    right: 76px;
}

.carousel-control-next.cd-hero-control {
    right: 20px;
}

.cd-service-card, .cd-mastering-card, .cd-contact-form-card, .cd-contact-info-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--cd-border);
    border-radius: var(--cd-radius-md);
    background: var(--cd-white);
    box-shadow: var(--cd-shadow-soft);
    transition: var(--cd-transition);
    overflow: hidden;
}

.cd-service-card::before, .cd-mastering-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--cd-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--cd-transition);
}

.cd-service-card:hover, .cd-mastering-card:hover, .cd-team-card:hover, .cd-platform-card:hover, .cd-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cd-shadow);
}

.cd-service-card:hover::before, .cd-mastering-card:hover::before {
    transform: scaleX(1);
}

.cd-service-icon-wrap {
    margin-bottom: 24px;
}

.cd-service-icon-wrap img, .cd-mastering-icon img {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    object-fit: contain;
    padding: 10px;
    background: rgba(229, 9, 20, 0.08);
}

.cd-service-card h3, .cd-mastering-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--cd-black);
}

.cd-service-card p, .cd-mastering-card p {
    margin: 0;
    color: var(--cd-muted);
    line-height: 1.75;
}

.cd-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--cd-primary);
    font-weight: 900;
}

.cd-card-link:hover {
    color: var(--cd-secondary);
    gap: 12px;
}

.cd-platforms-section {
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.08), transparent 35%),
        var(--cd-white);
}

.cd-platforms-wrap {
    padding: 24px;
    border: 1px solid var(--cd-border);
    border-radius: var(--cd-radius-lg);
    background: var(--cd-white);
    box-shadow: var(--cd-shadow-soft);
}

.cd-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 142px;
    padding: 22px 14px;
    border: 1px solid var(--cd-border);
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    transition: var(--cd-transition);
}

.cd-platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--cd-bg-soft);
}

.cd-platform-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.cd-platform-card span {
    color: var(--cd-black);
    font-size: 0.9rem;
    font-weight: 900;
}

.cd-platform-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--cd-muted);
    font-size: 0.95rem;
}

.cd-platform-note i {
    color: var(--cd-primary);
}

.cd-about-section {
    background: var(--cd-bg-soft);
}

.cd-about-image-wrap {
    position: relative;
    padding: 18px;
    border-radius: var(--cd-radius-lg);
    background: var(--cd-white);
    box-shadow: var(--cd-shadow-soft);
}

.cd-about-image {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 22px;
}

.cd-about-experience-card {
    position: absolute;
    right: 36px;
    bottom: 36px;
    max-width: 250px;
    padding: 18px 20px;
    border-radius: 20px;
    color: var(--cd-white);
    background: var(--cd-secondary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.cd-about-experience-card strong {
    display: block;
    color: var(--cd-primary);
    font-size: 1.6rem;
    font-weight: 950;
}

.cd-about-experience-card span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.cd-about-feature-grid {
    margin-top: 24px;
}

.cd-about-feature {
    display: flex;
    gap: 14px;
    height: 100%;
    padding: 18px;
    border: 1px solid var(--cd-border);
    border-radius: 18px;
    background: var(--cd-white);
}

.cd-about-feature strong {
    display: block;
    color: var(--cd-primary);
    font-size: 1.3rem;
    font-weight: 950;
}

.cd-about-feature h4 {
    margin: 2px 0 5px;
    font-size: 1rem;
    font-weight: 900;
}

.cd-about-feature p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.cd-mobile-section {
    background: var(--cd-secondary) !important;
}

.cd-mobile-card {
    position: relative;
    padding: 48px;
    border: 1px solid var(--cd-border-light);
    border-radius: var(--cd-radius-lg);
    background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.22), transparent 35%),
        linear-gradient(135deg, #111111, #050505);
    color: var(--cd-white);
    overflow: hidden;
}

.cd-mobile-content h2 {
    color: var(--cd-white);
}

.cd-mobile-content p {
    color: rgba(255, 255, 255, 0.72);
}

.cd-mobile-feature-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

.cd-mobile-feature-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--cd-border-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.cd-mobile-feature-item h4 {
    margin: 0 0 5px;
    color: var(--cd-white);
    font-size: 1rem;
    font-weight: 900;
}

.cd-mobile-feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cd-mobile-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 520px;
}

.cd-mobile-image {
    width: min(100%, 390px);
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

.cd-mobile-floating {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid var(--cd-border-light);
    border-radius: 18px;
    color: var(--cd-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 900;
}

.cd-mobile-floating i {
    color: var(--cd-primary);
}

.cd-mobile-floating-one {
    top: 80px;
    left: 20px;
}

.cd-mobile-floating-two {
    right: 10px;
    bottom: 120px;
}

.cd-mastering-section {
    background: var(--cd-white);
}

.cd-mastering-icon {
    margin-bottom: 22px;
}

.cd-mastering-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    border-radius: var(--cd-radius-md);
    color: var(--cd-white);
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.28), transparent 38%),
        var(--cd-secondary);
}

.cd-mastering-cta h3 {
    margin: 0;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cd-team-section {
    background: var(--cd-bg-soft);
}

.cd-team-card {
    height: 100%;
    border: 1px solid var(--cd-border);
    border-radius: var(--cd-radius-md);
    background: var(--cd-white);
    box-shadow: var(--cd-shadow-soft);
    overflow: hidden;
    transition: var(--cd-transition);
}

.cd-team-photo {
    height: 320px;
    background: var(--cd-bg-soft);
    overflow: hidden;
}

.cd-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cd-transition);
}

.cd-team-card:hover .cd-team-photo img {
    transform: scale(1.05);
}

.cd-team-content {
    padding: 26px;
    text-align: center;
}

.cd-team-content h3 {
    margin: 0;
    color: var(--cd-black);
    font-size: 1.25rem;
    font-weight: 950;
}

.cd-team-content span {
    display: block;
    margin-top: 5px;
    color: var(--cd-primary);
    font-size: 0.9rem;
    font-weight: 900;
}

.cd-team-content p {
    margin: 14px 0 0;
    color: var(--cd-muted);
    line-height: 1.65;
}

.cd-team-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.cd-team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--cd-primary);
    background: rgba(229, 9, 20, 0.09);
}

.cd-team-social a:hover {
    color: var(--cd-white);
    background: var(--cd-primary);
}

.cd-partners-section {
    background: var(--cd-white);
}

.cd-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cd-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 170px;
    padding: 24px;
    border: 1px solid var(--cd-border);
    border-radius: 22px;
    background: var(--cd-white);
    box-shadow: var(--cd-shadow-soft);
    text-align: center;
    transition: var(--cd-transition);
}

.cd-partner-card img {
    max-width: 120px;
    max-height: 62px;
    object-fit: contain;
}

.cd-partner-card span {
    color: var(--cd-black);
    font-weight: 900;
}

.cd-contact-section {
    background: radial-gradient(circle at top left, rgba(229, 9, 20, 0.08), transparent 34%),
        var(--cd-bg-soft);
}

.cd-contact-info-card {
    color: var(--cd-white);
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.25), transparent 42%),
        var(--cd-secondary);
    border-color: var(--cd-border-light);
}

.cd-contact-info-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.cd-contact-info-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.cd-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.cd-contact-list a {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--cd-border-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.cd-contact-list a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.cd-contact-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    color: var(--cd-white);
    background: var(--cd-primary);
}

.cd-contact-list strong {
    display: block;
    color: var(--cd-white);
    font-weight: 900;
}

.cd-contact-list small {
    color: rgba(255, 255, 255, 0.66);
}

.cd-contact-form-card .form-label {
    color: var(--cd-black);
    font-weight: 900;
    font-size: 0.9rem;
}

.cd-contact-form-card .form-control {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid var(--cd-border);
    background: #fafafa;
    box-shadow: none;
}

.cd-contact-form-card textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.cd-contact-form-card .form-control:focus {
    border-color: var(--cd-primary);
    box-shadow: 0 0 0 0.18rem rgba(229, 9, 20, 0.12);
}

.cd-page-wrap {
    min-height: 70vh;
}

.cd-inner-hero {
    padding: 150px 0 70px;
    color: var(--cd-white);
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.24), transparent 38%),
        var(--cd-secondary);
}

.cd-inner-hero-card {
    max-width: 900px;
    padding: 44px;
    border: 1px solid var(--cd-border-light);
    border-radius: var(--cd-radius-lg);
    background: rgba(255, 255, 255, 0.06);
}

.cd-inner-hero-card h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: -0.06em;
}

.cd-inner-hero-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.08rem;
    line-height: 1.75;
}

.cd-content-section {
    padding: 80px 0;
    background: var(--cd-bg-soft);
}

.cd-page-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--cd-shadow-soft);
}

.cd-page-content {
    padding: 36px;
    border: 1px solid var(--cd-border);
    border-radius: var(--cd-radius-md);
    background: var(--cd-white);
    box-shadow: var(--cd-shadow-soft);
}

.cd-page-content p {
    color: #333333;
    font-size: 1.02rem;
    line-height: 1.85;
}

.cd-page-content h1, .cd-page-content h2, .cd-page-content h3, .cd-page-content h4 {
    margin-top: 24px;
    color: var(--cd-black);
    font-weight: 950;
}

.cd-footer {
    padding: 70px 0 0;
    color: var(--cd-white);
    background: var(--cd-secondary);
}

.cd-footer-brand img {
    max-height: 58px;
    width: auto;
    margin-bottom: 18px;
}

.cd-footer-brand p, .cd-footer-widget p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.cd-footer-contact {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.cd-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.cd-footer-contact a:hover {
    color: var(--cd-white);
}

.cd-footer-contact i {
    color: var(--cd-primary);
}

.cd-footer-widget h4 {
    margin: 0 0 18px;
    color: var(--cd-white);
    font-size: 1.15rem;
    font-weight: 950;
}

.cd-footer-widget ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cd-footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.cd-footer-widget a:hover {
    color: var(--cd-white);
    padding-left: 4px;
}

.cd-footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    border-top: 1px solid var(--cd-border-light);
    text-align: center;
}

.cd-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.cd-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--cd-white);
    background: var(--cd-primary);
    box-shadow: 0 14px 34px rgba(229, 9, 20, 0.35);
}

.cd-floating-whatsapp:hover {
    color: var(--cd-white);
    transform: translateY(-4px);
}

.cd-floating-whatsapp i {
    font-size: 1.65rem;
}

.cd-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cd-reveal.cd-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .cd-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cd-hero-card {
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .cd-navbar {
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(14px);
    }

    .cd-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border: 1px solid var(--cd-border-light);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.06);
    }

    .cd-nav-menu .nav-link {
        padding: 12px 0 !important;
    }

    .cd-navbar-action {
        margin-top: 10px;
    }

    .cd-hero-section {
        min-height: auto;
        padding: 115px 0 70px;
    }

    .cd-hero-card {
        padding: 34px;
    }

    .cd-hero-image-wrap {
        min-height: 360px;
    }

    .cd-hero-float-one {
        left: 18px;
        top: 30px;
    }

    .cd-hero-float-two {
        right: 18px;
        bottom: 38px;
    }

    .cd-section {
        padding: 78px 0;
    }

    .cd-mobile-card {
        padding: 34px;
    }

    .cd-mobile-image-wrap {
        min-height: 430px;
    }

    .cd-mobile-floating-one {
        left: 12px;
        top: 40px;
    }

    .cd-mobile-floating-two {
        right: 12px;
        bottom: 70px;
    }

    .cd-mastering-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cd-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cd-team-photo {
        height: 280px;
    }
}

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

    .cd-section-heading {
        margin-bottom: 34px;
    }

    .cd-hero-section {
        padding: 105px 0 54px;
    }

    .cd-hero-card {
        padding: 26px;
        border-radius: 24px;
    }

    .cd-hero-content h1 {
        margin-top: 18px;
        font-size: 2.55rem;
    }

    .cd-hero-content p {
        font-size: 1rem;
    }

    .cd-hero-actions {
        display: grid;
    }

    .cd-hero-actions .btn {
        width: 100%;
    }

    .cd-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .cd-hero-stats div {
        min-width: 0;
        padding: 12px 10px;
        text-align: center;
    }

    .cd-hero-stats strong {
        font-size: 1.1rem;
    }

    .cd-hero-stats span {
        font-size: 0.72rem;
    }

    .cd-hero-image-wrap {
        min-height: 310px;
    }

    .cd-hero-image {
        max-height: 330px;
    }

    .cd-hero-floating-card, .cd-mobile-floating {
        padding: 10px 12px;
        font-size: 0.74rem;
        border-radius: 14px;
    }

    .cd-hero-control {
        display: none;
    }

    .cd-service-card, .cd-mastering-card, .cd-contact-form-card, .cd-contact-info-card {
        padding: 24px;
    }

    .cd-platforms-wrap {
        padding: 14px;
    }

    .cd-platform-card {
        min-height: 128px;
        padding: 18px 10px;
    }

    .cd-platform-logo {
        width: 58px;
        height: 58px;
    }

    .cd-platform-logo img {
        width: 42px;
        height: 42px;
    }

    .cd-platform-note {
        align-items: flex-start;
        text-align: left;
    }

    .cd-about-image {
        min-height: 310px;
    }

    .cd-about-experience-card {
        right: 28px;
        bottom: 28px;
    }

    .cd-mobile-card {
        padding: 26px;
        border-radius: 24px;
    }

    .cd-mobile-image-wrap {
        min-height: 360px;
    }

    .cd-mobile-image {
        max-height: 390px;
    }

    .cd-partners-grid {
        grid-template-columns: 1fr;
    }

    .cd-inner-hero {
        padding: 120px 0 52px;
    }

    .cd-inner-hero-card, .cd-page-content {
        padding: 26px;
        border-radius: 22px;
    }

    .cd-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cd-brand-logo {
        max-height: 42px;
    }

    .cd-hero-card {
        padding: 22px;
    }

    .cd-hero-content h1 {
        font-size: 2.25rem;
    }

    .cd-hero-stats {
        grid-template-columns: 1fr;
    }

    .cd-hero-stats div {
        text-align: left;
    }

    .cd-hero-floating-card {
        position: static;
        margin-top: 10px;
    }

    .cd-hero-image-wrap {
        display: block;
        text-align: center;
        min-height: auto;
    }

    .cd-hero-image {
        margin: 20px auto 8px;
    }

    .cd-mobile-floating {
        position: static;
        margin: 10px auto 0;
        width: max-content;
        max-width: 100%;
    }

    .cd-mobile-image-wrap {
        display: block;
        text-align: center;
        min-height: auto;
    }

    .cd-mobile-image {
        margin: 18px auto 8px;
    }

    .cd-mastering-cta {
        padding: 24px;
    }

    .cd-mastering-cta .btn {
        width: 100%;
    }

    .cd-contact-form-card .btn {
        width: 100%;
    }

    .cd-footer {
        padding-top: 54px;
    }
}

.cd-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
}

.cd-login-btn, .cd-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cd-login-btn {
    color: var(--cd-white) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.cd-login-btn:hover {
    color: var(--cd-black) !important;
    background: var(--cd-white);
    border-color: var(--cd-white);
    transform: translateY(-2px);
}

.cd-register-btn {
    color: var(--cd-white) !important;
    background: var(--cd-primary);
    border: 1px solid var(--cd-primary);
    box-shadow: 0 14px 34px rgba(229, 9, 20, 0.32);
}

.cd-register-btn:hover {
    color: var(--cd-white) !important;
    background: #b90009;
    border-color: #b90009;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.42);
}

.cd-footer-widget ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.cd-footer-widget ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cd-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
}

.cd-footer-widget ul li a:hover {
    color: var(--cd-white);
    padding-left: 6px;
}

.cd-footer-widget ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.cd-footer .cd-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 999px;
    color: var(--cd-black) !important;
    background: var(--cd-white);
    border: 1px solid var(--cd-white);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.12);
}

.cd-footer .cd-btn-light:hover {
    color: var(--cd-white) !important;
    background: var(--cd-primary);
    border-color: var(--cd-primary);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.35);
}

@media (max-width: 991.98px) {
    .cd-header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-left: 0;
        margin-top: 12px;
    }

    .cd-login-btn, .cd-register-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .cd-header-actions {
        grid-template-columns: 1fr;
    }
}

.cd-premium-navbar {
    padding: 16px 0 !important;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.82)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cd-navbar.cd-navbar-scrolled, body:not(.home) .cd-navbar {
    padding: 12px 0 !important;
    background: rgba(5, 5, 5, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34) !important;
}

.cd-nav-shell {
    position: relative;
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 18px 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    background: radial-gradient(circle at 0% 50%, rgba(229, 9, 20, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cd-nav-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(229, 9, 20, 0.18), transparent 32%, rgba(255, 255, 255, 0.06));
    opacity: 0.85;
}

.cd-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.cd-brand-logo {
    max-height: 50px !important;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
}

.cd-nav-shell .navbar-collapse {
    position: relative;
    z-index: 2;
}

.cd-nav-menu {
    align-items: center;
    gap: 4px;
}

.cd-nav-menu .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 15px !important;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.cd-nav-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--cd-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.24s ease;
}

.cd-nav-menu .nav-link:hover, .cd-nav-menu .nav-link.active {
    color: var(--cd-white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.cd-nav-menu .nav-link:hover::after, .cd-nav-menu .nav-link.active::after {
    transform: scaleX(1);
}

.cd-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 18px;
}

.cd-login-btn, .cd-register-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.01em;
    overflow: hidden;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cd-login-btn {
    color: var(--cd-white) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cd-login-btn:hover {
    color: var(--cd-black) !important;
    background: var(--cd-white);
    border-color: var(--cd-white);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.13);
}

.cd-register-btn {
    color: var(--cd-white) !important;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
        linear-gradient(135deg, var(--cd-primary), #b90009);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 38px rgba(229, 9, 20, 0.38);
}

.cd-register-btn:hover {
    color: var(--cd-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(229, 9, 20, 0.52);
}

.cd-register-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 48%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: all 0.55s ease;
}

.cd-register-btn:hover::before {
    left: 130%;
}

.cd-navbar-toggler {
    position: relative;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.cd-premium-footer {
    position: relative;
    padding: 90px 0 0 !important;
    overflow: hidden;
    background: radial-gradient(circle at 12% 20%, rgba(229, 9, 20, 0.24), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #050505, #090909 48%, #120506) !important;
}

.cd-footer-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
    opacity: 0.38;
}

.cd-footer-orb-one {
    width: 300px;
    height: 300px;
    left: -130px;
    top: 80px;
    background: var(--cd-primary);
}

.cd-footer-orb-two {
    width: 250px;
    height: 250px;
    right: -120px;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.14);
}

.cd-footer-panel {
    position: relative;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 32px 32px 0 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    box-shadow: 0 -18px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cd-footer-brand img {
    max-height: 64px !important;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

.cd-footer-brand p, .cd-footer-widget p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.8;
    font-size: 0.96rem;
}

.cd-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
}

.cd-footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--cd-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 900;
}

.cd-footer-badges i {
    color: var(--cd-primary);
}

.cd-footer-contact {
    display: grid;
    gap: 12px;
    margin-top: 0 !important;
}

.cd-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 800;
}

.cd-footer-contact a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    color: var(--cd-white);
    background: var(--cd-primary);
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.25);
}

.cd-footer-contact a:hover {
    color: var(--cd-white) !important;
    transform: translateX(4px);
}

.cd-footer-widget {
    height: 100%;
}

.cd-footer-links-card, .cd-footer-cta-card {
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.cd-footer-widget h4 {
    margin: 0 0 20px;
    color: var(--cd-white);
    font-size: 1.14rem;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.cd-footer-links-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cd-footer-links-card ul li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 9px 12px !important;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.76) !important;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 850;
}

.cd-footer-links-card ul li a::before {
    display: none !important;
}

.cd-footer-links-card ul li a i {
    color: var(--cd-primary);
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.cd-footer-links-card ul li a:hover {
    color: var(--cd-white) !important;
    background: rgba(229, 9, 20, 0.16);
    border-color: rgba(229, 9, 20, 0.26);
    padding-left: 16px !important;
}

.cd-footer-links-card ul li a:hover i {
    transform: translateX(4px);
}

.cd-footer-mini-title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--cd-primary);
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.18);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cd-footer-cta-card h4 {
    font-size: 1.45rem;
    line-height: 1.25;
}

.cd-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cd-footer-whatsapp-btn, .cd-footer-register-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 950;
    line-height: 1;
}

.cd-footer-whatsapp-btn {
    color: var(--cd-white) !important;
    background: var(--cd-primary);
    border: 1px solid var(--cd-primary);
    box-shadow: 0 16px 38px rgba(229, 9, 20, 0.35);
}

.cd-footer-register-btn {
    color: var(--cd-white) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cd-footer-whatsapp-btn:hover, .cd-footer-register-btn:hover {
    color: var(--cd-white) !important;
    transform: translateY(-2px);
}

.cd-footer-register-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.cd-footer-bottom {
    margin-top: 38px !important;
    padding: 22px 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    text-align: center;
}

.cd-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.cd-floating-whatsapp {
    width: 60px !important;
    height: 60px !important;
    right: 22px !important;
    bottom: 22px !important;
    background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.3), transparent 30%),
        var(--cd-primary) !important;
    box-shadow: 0 18px 46px rgba(229, 9, 20, 0.44) !important;
}

@media (max-width: 991.98px) {
    .cd-nav-shell {
        border-radius: 24px;
    }

    .cd-nav-shell .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        margin-top: 14px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(0, 0, 0, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cd-nav-menu {
        gap: 6px;
    }

    .cd-nav-menu .nav-link {
        width: 100%;
        justify-content: center;
        padding: 12px 16px !important;
    }

    .cd-footer-panel {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .cd-premium-navbar {
        padding: 10px 0 !important;
    }

    .cd-nav-shell {
        min-height: 66px;
        padding: 10px 12px 10px 16px;
        border-radius: 20px;
    }

    .cd-brand-logo {
        max-height: 42px !important;
    }

    .cd-header-actions {
        grid-template-columns: 1fr;
    }

    .cd-premium-footer {
        padding-top: 64px !important;
    }

    .cd-footer-panel {
        padding: 24px 20px;
        border-radius: 26px 26px 0 0;
    }

    .cd-footer-links-card, .cd-footer-cta-card {
        padding: 22px;
        border-radius: 22px;
    }

    .cd-footer-cta-actions {
        display: grid;
    }

    .cd-footer-whatsapp-btn, .cd-footer-register-btn {
        width: 100%;
    }
}

.cd-premium-footer {
    padding: 46px 0 0 !important;
    background: radial-gradient(circle at 8% 25%, rgba(229, 9, 20, 0.20), transparent 24%),
        radial-gradient(circle at 95% 20%, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(135deg, #050505, #080808 55%, #120506) !important;
}

.cd-footer-panel {
    padding: 28px 34px 20px !important;
    border-radius: 26px 26px 0 0 !important;
    max-width: 1180px;
    margin: 0 auto;
}

.cd-footer-brand img {
    max-height: 46px !important;
    margin-bottom: 12px !important;
}

.cd-footer-brand p, .cd-footer-widget p {
    max-width: 420px;
    font-size: 0.88rem !important;
    line-height: 1.65 !important;
    margin-bottom: 0;
}

.cd-footer-badges {
    gap: 7px !important;
    margin: 14px 0 16px !important;
}

.cd-footer-badges span {
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
}

.cd-footer-contact {
    gap: 8px !important;
}

.cd-footer-contact a {
    gap: 10px !important;
    font-size: 0.88rem !important;
}

.cd-footer-contact a span {
    width: 32px !important;
    height: 32px !important;
    border-radius: 11px !important;
}

.cd-footer-links-card, .cd-footer-cta-card {
    padding: 20px !important;
    border-radius: 22px !important;
}

.cd-footer-widget h4 {
    margin-bottom: 14px !important;
    font-size: 1.02rem !important;
}

.cd-footer-links-card ul {
    gap: 7px !important;
}

.cd-footer-links-card ul li a {
    min-height: 34px !important;
    padding: 7px 10px !important;
    border-radius: 12px !important;
    font-size: 0.86rem !important;
}

.cd-footer-links-card ul li a i {
    font-size: 0.98rem !important;
}

.cd-footer-mini-title {
    margin-bottom: 10px !important;
    padding: 6px 10px !important;
    font-size: 0.68rem !important;
}

.cd-footer-cta-card h4 {
    font-size: 1.22rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}

.cd-footer-cta-actions {
    gap: 8px !important;
    margin-top: 16px !important;
}

.cd-footer-whatsapp-btn, .cd-footer-register-btn {
    min-height: 40px !important;
    padding: 10px 16px !important;
    font-size: 0.82rem !important;
}

.cd-footer-bottom {
    margin-top: 24px !important;
    padding: 16px 0 0 !important;
}

.cd-footer-bottom p {
    font-size: 0.82rem !important;
}

.cd-footer-orb-one {
    width: 220px !important;
    height: 220px !important;
    left: -100px !important;
    top: 40px !important;
}

.cd-footer-orb-two {
    width: 190px !important;
    height: 190px !important;
    right: -90px !important;
    bottom: 20px !important;
}

.cd-floating-whatsapp {
    width: 54px !important;
    height: 54px !important;
}

@media (max-width: 991.98px) {
    .cd-premium-footer {
        padding-top: 38px !important;
    }

    .cd-footer-panel {
        padding: 24px 22px 18px !important;
    }

    .cd-footer-links-card, .cd-footer-cta-card {
        padding: 18px !important;
    }
}

@media (max-width: 575.98px) {
    .cd-premium-footer {
        padding-top: 32px !important;
    }

    .cd-footer-panel {
        padding: 22px 18px 16px !important;
        border-radius: 22px 22px 0 0 !important;
    }

    .cd-footer-brand img {
        max-height: 42px !important;
    }

    .cd-footer-badges {
        margin: 12px 0 14px !important;
    }

    .cd-footer-cta-actions {
        display: grid !important;
    }

    .cd-footer-whatsapp-btn, .cd-footer-register-btn {
        width: 100% !important;
    }

    .cd-footer-bottom {
        margin-top: 18px !important;
    }
}

.cd-simple-footer {
    position: relative;
    padding: 42px 0 0;
    color: #ffffff;
    background: radial-gradient(circle at 8% 20%, rgba(229, 9, 20, 0.18), transparent 26%),
        linear-gradient(135deg, #050505 0%, #090909 55%, #110506 100%);
    overflow: hidden;
}

.cd-simple-footer-box {
    position: relative;
    padding: 32px 34px 18px;
    border-radius: 26px 26px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cd-simple-footer-brand img {
    max-height: 48px;
    width: auto;
    margin-bottom: 14px;
    object-fit: contain;
}

.cd-simple-footer-brand p, .cd-simple-footer-widget p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cd-simple-footer-contact {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.cd-simple-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 800;
}

.cd-simple-footer-contact a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.cd-simple-footer-contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: #ffffff;
    background: var(--cd-primary);
    font-size: 0.92rem;
    box-shadow: 0 10px 24px rgba(229, 9, 20, 0.25);
}

.cd-simple-footer-widget h4 {
    position: relative;
    margin: 0 0 15px;
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.cd-simple-footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--cd-primary);
}

.cd-simple-footer-widget ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cd-simple-footer-widget ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 800;
}

.cd-simple-footer-widget ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--cd-primary);
    opacity: 0.85;
}

.cd-simple-footer-widget ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.cd-simple-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.cd-simple-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 950;
    line-height: 1;
    transition: all 0.25s ease;
}

.cd-simple-footer-btn-primary {
    color: #ffffff !important;
    background: var(--cd-primary);
    border: 1px solid var(--cd-primary);
    box-shadow: 0 13px 28px rgba(229, 9, 20, 0.32);
}

.cd-simple-footer-btn-primary:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(229, 9, 20, 0.45);
}

.cd-simple-footer-btn-outline {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cd-simple-footer-btn-outline:hover {
    color: #050505 !important;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cd-simple-footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.cd-simple-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
}

.cd-floating-whatsapp {
    width: 54px !important;
    height: 54px !important;
    right: 22px !important;
    bottom: 22px !important;
    color: #ffffff !important;
    background: var(--cd-primary) !important;
    box-shadow: 0 16px 38px rgba(229, 9, 20, 0.40) !important;
}

.cd-floating-whatsapp:hover {
    color: #ffffff !important;
    transform: translateY(-4px);
}

.cd-floating-whatsapp i {
    font-size: 1.45rem !important;
}

@media (max-width: 991.98px) {
    .cd-simple-footer {
        padding-top: 34px;
    }

    .cd-simple-footer-box {
        padding: 28px 24px 18px;
    }

    .cd-simple-footer-brand p, .cd-simple-footer-widget p {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .cd-simple-footer {
        padding-top: 28px;
    }

    .cd-simple-footer-box {
        padding: 24px 18px 16px;
        border-radius: 22px 22px 0 0;
    }

    .cd-simple-footer-brand img {
        max-height: 42px;
    }

    .cd-simple-footer-actions {
        display: grid;
    }

    .cd-simple-footer-btn {
        width: 100%;
    }

    .cd-simple-footer-bottom {
        margin-top: 22px;
    }
}

@media (max-width: 991.98px) {
    .cd-premium-navbar {
        padding: 10px 0 !important;
        background: rgba(5, 5, 5, 0.98) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .cd-nav-shell {
        min-height: 66px !important;
        padding: 9px 12px 9px 16px !important;
        border-radius: 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
            radial-gradient(circle at left center, rgba(229, 9, 20, 0.22), transparent 34%) !important;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32) !important;
    }

    .cd-brand-logo {
        max-height: 42px !important;
    }

    .cd-navbar-toggler {
        width: 54px !important;
        height: 54px !important;
        padding: 0 !important;
        border-radius: 18px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    }

    .cd-navbar-toggler .navbar-toggler-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .cd-nav-shell .navbar-collapse {
        width: 100% !important;
        flex-basis: 100% !important;
        margin-top: 12px !important;
        padding: 14px !important;
        border-radius: 20px !important;
        background: rgba(5, 5, 5, 0.82) !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
    }

    .cd-nav-menu {
        display: grid !important;
        gap: 6px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .cd-nav-menu .nav-item {
        width: 100% !important;
    }

    .cd-nav-menu .nav-link {
        width: 100% !important;
        min-height: 42px !important;
        justify-content: flex-start !important;
        padding: 10px 14px !important;
        border-radius: 14px !important;
        font-size: 0.94rem !important;
        font-weight: 900 !important;
        color: rgba(255, 255, 255, 0.78) !important;
        background: transparent !important;
    }

    .cd-nav-menu .nav-link::after {
        display: none !important;
    }

    .cd-nav-menu .nav-link:hover, .cd-nav-menu .nav-link.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.075) !important;
    }

    .cd-nav-menu .nav-link::before {
        content: "";
        width: 7px;
        height: 7px;
        margin-right: 10px;
        border-radius: 999px;
        background: var(--cd-primary);
        opacity: 0.85;
    }

    .cd-header-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin: 12px 0 0 !important;
    }

    .cd-login-btn, .cd-register-btn {
        width: 100% !important;
        min-height: 42px !important;
        padding: 11px 14px !important;
        border-radius: 14px !important;
        font-size: 0.9rem !important;
        font-weight: 950 !important;
    }
}

@media (max-width: 575.98px) {
    .cd-premium-navbar {
        padding: 8px 0 !important;
    }

    .cd-nav-shell {
        min-height: 62px !important;
        padding: 8px 10px 8px 14px !important;
        border-radius: 20px !important;
    }

    .cd-brand-logo {
        max-height: 38px !important;
    }

    .cd-navbar-toggler {
        width: 50px !important;
        height: 50px !important;
        border-radius: 16px !important;
    }

    .cd-nav-shell .navbar-collapse {
        margin-top: 10px !important;
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .cd-nav-menu {
        gap: 5px !important;
    }

    .cd-nav-menu .nav-link {
        min-height: 40px !important;
        padding: 9px 12px !important;
        font-size: 0.9rem !important;
    }

    .cd-header-actions {
        grid-template-columns: 1fr 1fr !important;
        gap: 7px !important;
    }

    .cd-login-btn, .cd-register-btn {
        min-height: 40px !important;
        padding: 10px 12px !important;
        font-size: 0.86rem !important;
    }
}

@media (max-width: 380px) {
    .cd-brand-logo {
        max-height: 34px !important;
    }

    .cd-navbar-toggler {
        width: 46px !important;
        height: 46px !important;
    }

    .cd-header-actions {
        grid-template-columns: 1fr !important;
    }
}

.cd-legal-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.cd-page-content.cd-legal-content {
    padding: 42px 46px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.cd-legal-content h1, .cd-legal-content h2, .cd-legal-content h3, .cd-legal-content h4, .cd-legal-content h5 {
    color: var(--cd-black);
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cd-legal-content h1 {
    margin: 0 0 18px;
    font-size: 2.2rem;
}

.cd-legal-content h2 {
    margin: 0 0 18px;
    font-size: 2rem;
}

.cd-legal-content h3 {
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1.45rem;
}

.cd-legal-content h4 {
    margin: 26px 0 12px;
    font-size: 1.16rem;
}

.cd-legal-content h5 {
    margin: 22px 0 10px;
    font-size: 1rem;
}

.cd-legal-content p {
    margin: 0 0 16px;
    color: #333333;
    font-size: 1rem;
    line-height: 1.85;
}

.cd-legal-content strong {
    color: #111111;
    font-weight: 900;
}

.cd-legal-content a {
    color: var(--cd-primary);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cd-legal-content ul, .cd-legal-content ol {
    margin: 0 0 22px 0;
    padding-left: 24px;
}

.cd-legal-content li {
    margin-bottom: 10px;
    color: #333333;
    font-size: 1rem;
    line-height: 1.78;
}

.cd-legal-content li::marker {
    color: var(--cd-primary);
    font-weight: 900;
}

.cd-legal-content hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.cd-legal-content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--cd-primary);
    border-radius: 14px;
    background: #f8f8f8;
    color: #333333;
}

.cd-legal-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.cd-legal-content table th, .cd-legal-content table td {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    text-align: left;
    vertical-align: top;
}

.cd-legal-content table th {
    background: #f5f5f5;
    color: #111111;
    font-weight: 900;
}

@media (max-width: 767.98px) {
    .cd-page-content.cd-legal-content {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .cd-legal-content h1 {
        font-size: 1.8rem;
    }

    .cd-legal-content h2 {
        font-size: 1.65rem;
    }

    .cd-legal-content h3 {
        font-size: 1.25rem;
    }

    .cd-legal-content p, .cd-legal-content li {
        font-size: 0.96rem;
        line-height: 1.78;
    }
}

.cd-hero-visual-wrap {
    position: relative !important;
    isolation: isolate;
    min-height: 360px;
}

.cd-hero-logo-glow {
    position: absolute;
    inset: 14% 8%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%),
        radial-gradient(circle, rgba(229, 9, 20, 0.18), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.cd-hero-image-wrap .cd-hero-image {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 28px rgba(255, 255, 255, 0.08));
    transform: translateZ(0);
}

.cd-hero-logo-fallback {
    position: relative;
    z-index: 3;
    width: 250px;
    height: 250px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    background: #ffffff;
    font-size: 3rem;
    font-weight: 950;
    letter-spacing: -0.06em;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cd-hero-streaming-platforms {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.cd-hero-streaming-float {
    position: absolute;
    animation: cdHeroPlatformFloat 4.8s ease-in-out infinite;
}

.cd-hero-platform-logo {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.25s ease;
}

.cd-hero-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.cd-hero-platform-logo:hover {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.11));
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(229, 9, 20, 0.18);
}

.cd-hero-streaming-float a {
    pointer-events: auto;
}

.cd-hero-streaming-float-1 {
    top: 2%;
    left: 13%;
    animation-delay: 0s;
}

.cd-hero-streaming-float-2 {
    top: 15%;
    right: 2%;
    animation-delay: 0.65s;
}

.cd-hero-streaming-float-3 {
    right: 5%;
    bottom: 16%;
    animation-delay: 1.15s;
}

.cd-hero-streaming-float-4 {
    bottom: 3%;
    left: 22%;
    animation-delay: 1.75s;
}

.cd-hero-streaming-float-5 {
    top: 45%;
    left: -2%;
    animation-delay: 2.25s;
}

.cd-hero-streaming-float-2 .cd-hero-platform-logo, .cd-hero-streaming-float-4 .cd-hero-platform-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
}

.cd-hero-streaming-float-3 .cd-hero-platform-logo {
    width: 68px;
    height: 68px;
    border-radius: 22px;
}

@keyframes cdHeroPlatformFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.cd-hero-floating-card {
    z-index: 5;
}

@media (max-width: 991.98px) {
    .cd-hero-visual-wrap {
        min-height: 310px;
        max-width: 430px;
        margin: 10px auto 0;
    }

    .cd-hero-platform-logo {
        width: 54px;
        height: 54px;
        padding: 10px;
        border-radius: 18px;
    }

    .cd-hero-streaming-float-2 .cd-hero-platform-logo, .cd-hero-streaming-float-4 .cd-hero-platform-logo {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .cd-hero-streaming-float-3 .cd-hero-platform-logo {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }

    .cd-hero-streaming-float-1 {
        top: 4%;
        left: 12%;
    }

    .cd-hero-streaming-float-2 {
        top: 20%;
        right: 2%;
    }

    .cd-hero-streaming-float-3 {
        right: 7%;
        bottom: 18%;
    }

    .cd-hero-streaming-float-4 {
        bottom: 5%;
        left: 22%;
    }

    .cd-hero-streaming-float-5 {
        top: 44%;
        left: 0;
    }
}

@media (max-width: 767.98px) {
    .cd-hero-visual-wrap {
        min-height: 250px;
        max-width: 340px;
        margin-top: 18px;
    }

    .cd-hero-streaming-float-4, .cd-hero-streaming-float-5 {
        display: none;
    }

    .cd-hero-platform-logo {
        width: 46px;
        height: 46px;
        padding: 8px;
        border-radius: 15px;
    }

    .cd-hero-streaming-float-2 .cd-hero-platform-logo, .cd-hero-streaming-float-3 .cd-hero-platform-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .cd-hero-streaming-float-1 {
        top: 2%;
        left: 14%;
    }

    .cd-hero-streaming-float-2 {
        top: 26%;
        right: 1%;
    }

    .cd-hero-streaming-float-3 {
        right: 8%;
        bottom: 10%;
    }

    .cd-hero-floating-card {
        transform: scale(0.86);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .cd-hero-visual-wrap {
        min-height: 215px;
        max-width: 300px;
    }

    .cd-hero-platform-logo {
        width: 40px;
        height: 40px;
        padding: 7px;
        border-radius: 13px;
    }

    .cd-hero-streaming-float-2 .cd-hero-platform-logo, .cd-hero-streaming-float-3 .cd-hero-platform-logo {
        width: 39px;
        height: 39px;
        border-radius: 12px;
    }

    .cd-hero-streaming-float-1 {
        top: 0;
        left: 12%;
    }

    .cd-hero-streaming-float-2 {
        top: 24%;
        right: -1%;
    }

    .cd-hero-streaming-float-3 {
        right: 6%;
        bottom: 8%;
    }
}

.cd-hero-card-final {
    position: relative;
    overflow: hidden;
}

.cd-hero-floating-card, .cd-hero-float-one, .cd-hero-float-two {
    display: none !important;
}

.cd-hero-visual-final {
    position: relative !important;
    isolation: isolate;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.cd-hero-visual-orbit {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 999px;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 58%),
        radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.14), transparent 72%);
    filter: blur(6px);
    opacity: 0.85;
    pointer-events: none;
}

.cd-hero-visual-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    pointer-events: none;
}

.cd-hero-main-logo-card {
    position: relative;
    z-index: 3;
    width: 286px;
    height: 286px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.38),
        0 0 0 12px rgba(255, 255, 255, 0.04),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.cd-hero-main-logo-card::after {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.8;
}

.cd-hero-main-logo-card .cd-hero-image {
    max-width: 78% !important;
    max-height: 78% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

.cd-hero-logo-fallback {
    color: #050505;
    font-size: 3rem;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.cd-hero-platform-cloud {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.cd-hero-platform-item {
    position: absolute;
    animation: cdHeroProfessionalFloat 4.8s ease-in-out infinite;
}

.cd-hero-platform-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.24s ease;
}

.cd-hero-platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}

.cd-hero-platform-icon:hover {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(229, 9, 20, 0.20);
}

.cd-hero-platform-item a {
    pointer-events: auto;
}

.cd-hero-platform-item-1 {
    top: 8%;
    left: 18%;
    animation-delay: 0s;
}

.cd-hero-platform-item-2 {
    top: 18%;
    right: 7%;
    animation-delay: 0.6s;
}

.cd-hero-platform-item-3 {
    right: 9%;
    bottom: 16%;
    animation-delay: 1.1s;
}

.cd-hero-platform-item-4 {
    left: 17%;
    bottom: 10%;
    animation-delay: 1.65s;
}

.cd-hero-platform-item-5 {
    left: 4%;
    top: 46%;
    animation-delay: 2.15s;
}

.cd-hero-platform-item-2 .cd-hero-platform-icon, .cd-hero-platform-item-4 .cd-hero-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
}

.cd-hero-platform-item-3 .cd-hero-platform-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
}

@keyframes cdHeroProfessionalFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .cd-hero-visual-final {
        min-height: 330px;
        max-width: 430px;
        margin: 18px auto 0;
    }

    .cd-hero-visual-orbit {
        width: 310px;
        height: 310px;
    }

    .cd-hero-visual-ring {
        width: 282px;
        height: 282px;
    }

    .cd-hero-main-logo-card {
        width: 250px;
        height: 250px;
    }

    .cd-hero-platform-icon {
        width: 54px;
        height: 54px;
        padding: 9px;
        border-radius: 18px;
    }

    .cd-hero-platform-item-2 .cd-hero-platform-icon, .cd-hero-platform-item-4 .cd-hero-platform-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .cd-hero-platform-item-3 .cd-hero-platform-icon {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }

    .cd-hero-platform-item-1 {
        top: 6%;
        left: 18%;
    }

    .cd-hero-platform-item-2 {
        top: 20%;
        right: 4%;
    }

    .cd-hero-platform-item-3 {
        right: 8%;
        bottom: 17%;
    }

    .cd-hero-platform-item-4 {
        left: 20%;
        bottom: 8%;
    }

    .cd-hero-platform-item-5 {
        left: 2%;
        top: 46%;
    }
}

@media (max-width: 767.98px) {
    .cd-hero-visual-final {
        min-height: 265px;
        max-width: 330px;
        margin-top: 20px;
    }

    .cd-hero-visual-orbit {
        width: 250px;
        height: 250px;
    }

    .cd-hero-visual-ring {
        width: 224px;
        height: 224px;
    }

    .cd-hero-main-logo-card {
        width: 198px;
        height: 198px;
    }

    .cd-hero-platform-item-4, .cd-hero-platform-item-5 {
        display: none !important;
    }

    .cd-hero-platform-icon {
        width: 44px;
        height: 44px;
        padding: 7px;
        border-radius: 14px;
    }

    .cd-hero-platform-item-2 .cd-hero-platform-icon, .cd-hero-platform-item-3 .cd-hero-platform-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .cd-hero-platform-item-1 {
        top: 4%;
        left: 18%;
    }

    .cd-hero-platform-item-2 {
        top: 24%;
        right: 7%;
    }

    .cd-hero-platform-item-3 {
        right: 11%;
        bottom: 10%;
    }
}

@media (max-width: 480px) {
    .cd-hero-visual-final {
        min-height: 230px;
        max-width: 292px;
    }

    .cd-hero-visual-orbit {
        width: 220px;
        height: 220px;
    }

    .cd-hero-visual-ring {
        width: 198px;
        height: 198px;
    }

    .cd-hero-main-logo-card {
        width: 174px;
        height: 174px;
    }

    .cd-hero-platform-icon {
        width: 38px;
        height: 38px;
        padding: 6px;
        border-radius: 12px;
    }

    .cd-hero-platform-item-2 .cd-hero-platform-icon, .cd-hero-platform-item-3 .cd-hero-platform-icon {
        width: 37px;
        height: 37px;
        border-radius: 12px;
    }

    .cd-hero-platform-item-1 {
        top: 2%;
        left: 16%;
    }

    .cd-hero-platform-item-2 {
        top: 23%;
        right: 5%;
    }

    .cd-hero-platform-item-3 {
        right: 9%;
        bottom: 8%;
    }
}

@media (max-width: 767.98px) {
    .cd-hero-platform-item-4, .cd-hero-platform-item-5 {
        display: block !important;
    }

    .cd-hero-visual-final {
        min-height: 285px !important;
        max-width: 345px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: visible !important;
    }

    .cd-hero-main-logo-card {
        width: 190px !important;
        height: 190px !important;
    }

    .cd-hero-visual-ring {
        width: 218px !important;
        height: 218px !important;
    }

    .cd-hero-visual-orbit {
        width: 248px !important;
        height: 248px !important;
    }

    .cd-hero-platform-icon, .cd-hero-platform-item-2 .cd-hero-platform-icon, .cd-hero-platform-item-3 .cd-hero-platform-icon, .cd-hero-platform-item-4 .cd-hero-platform-icon, .cd-hero-platform-item-5 .cd-hero-platform-icon {
        width: 40px !important;
        height: 40px !important;
        padding: 7px !important;
        border-radius: 13px !important;
    }

    .cd-hero-platform-item-1 {
        top: 2% !important;
        left: 18% !important;
    }

    .cd-hero-platform-item-2 {
        top: 18% !important;
        right: 6% !important;
    }

    .cd-hero-platform-item-3 {
        right: 9% !important;
        bottom: 15% !important;
    }

    .cd-hero-platform-item-4 {
        left: 20% !important;
        bottom: 8% !important;
    }

    .cd-hero-platform-item-5 {
        left: 4% !important;
        top: 42% !important;
    }
}

@media (max-width: 480px) {
    .cd-hero-visual-final {
        min-height: 260px !important;
        max-width: 305px !important;
    }

    .cd-hero-main-logo-card {
        width: 168px !important;
        height: 168px !important;
    }

    .cd-hero-visual-ring {
        width: 194px !important;
        height: 194px !important;
    }

    .cd-hero-visual-orbit {
        width: 220px !important;
        height: 220px !important;
    }

    .cd-hero-platform-icon, .cd-hero-platform-item-2 .cd-hero-platform-icon, .cd-hero-platform-item-3 .cd-hero-platform-icon, .cd-hero-platform-item-4 .cd-hero-platform-icon, .cd-hero-platform-item-5 .cd-hero-platform-icon {
        width: 35px !important;
        height: 35px !important;
        padding: 6px !important;
        border-radius: 12px !important;
    }

    .cd-hero-platform-item-1 {
        top: 1% !important;
        left: 17% !important;
    }

    .cd-hero-platform-item-2 {
        top: 18% !important;
        right: 5% !important;
    }

    .cd-hero-platform-item-3 {
        right: 8% !important;
        bottom: 14% !important;
    }

    .cd-hero-platform-item-4 {
        left: 19% !important;
        bottom: 7% !important;
    }

    .cd-hero-platform-item-5 {
        left: 4% !important;
        top: 42% !important;
    }
}

.cd-hero-section-final {
    position: relative;
    background: radial-gradient(circle at 6% 18%, rgba(229, 9, 20, 0.26), transparent 26%),
        radial-gradient(circle at 94% 18%, rgba(229, 9, 20, 0.30), transparent 24%),
        radial-gradient(circle at 2% 92%, rgba(255, 255, 255, 0.08), transparent 18%),
        linear-gradient(135deg, #050505 0%, #080808 48%, #120506 100%) !important;
    overflow: hidden;
}

.cd-hero-section-final::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    opacity: 0.12;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.cd-hero-section-final::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.035) 48%, transparent 70%);
    opacity: 0.9;
}

.cd-hero-card-final {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    background: radial-gradient(circle at 78% 40%, rgba(255, 255, 255, 0.09), transparent 30%),
        radial-gradient(circle at 18% 10%, rgba(229, 9, 20, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(10, 10, 10, 0.88)) !important;
    background-size: cover !important;
    background-position: center !important;
}

.cd-hero-card-final.cd-hero-has-custom-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78)),
        var(--cd-hero-custom-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    pointer-events: none;
}

.cd-hero-pattern-layer, .cd-hero-grid-layer, .cd-hero-shine-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cd-hero-pattern-layer {
    z-index: -2;
    background: radial-gradient(circle at 72% 48%, rgba(229, 9, 20, 0.16), transparent 32%),
        radial-gradient(circle at 45% 84%, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.035) 42%, transparent 72%);
}

.cd-hero-grid-layer {
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.16;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.6) 52%, transparent 100%);
}

.cd-hero-shine-layer {
    z-index: 0;
    background: radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.10), transparent 20%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.26), transparent 46%, rgba(5, 5, 5, 0.18));
}

.cd-hero-card-final .row {
    z-index: 2;
}

@media (max-width: 767.98px) {
    .cd-hero-visual-final {
        min-height: 285px !important;
        max-width: 345px !important;
        margin: 20px auto 0 !important;
    }
}

.cd-hero-section-final {
    position: relative;
    background: radial-gradient(circle at 8% 22%, rgba(229, 9, 20, 0.30), transparent 24%),
        radial-gradient(circle at 92% 20%, rgba(229, 9, 20, 0.28), transparent 22%),
        radial-gradient(circle at 14% 92%, rgba(255, 255, 255, 0.06), transparent 14%),
        linear-gradient(135deg, #040404 0%, #080808 48%, #130507 100%) !important;
    overflow: hidden;
}

.cd-hero-section-final::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.05), transparent 22%),
        radial-gradient(circle at 78% 62%, rgba(229, 9, 20, 0.08), transparent 18%);
    opacity: 0.9;
}

.cd-hero-section-final::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.08;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

.cd-hero-card-final {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        linear-gradient(135deg, rgba(5, 5, 5, 0.95), rgba(10, 10, 10, 0.88)) !important;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cd-hero-card-final.cd-hero-has-custom-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -5;
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.78)),
        var(--cd-hero-custom-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    pointer-events: none;
}

.cd-hero-pattern-layer {
    z-index: -4;
    background: radial-gradient(circle at 77% 47%, rgba(255, 255, 255, 0.10), transparent 16%),
        radial-gradient(circle at 77% 47%, rgba(229, 9, 20, 0.14), transparent 28%),
        radial-gradient(circle at 20% 12%, rgba(229, 9, 20, 0.12), transparent 22%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.03) 46%, transparent 72%);
}

.cd-hero-grid-layer {
    z-index: -3;
    opacity: 0.22;
    background: linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
        repeating-linear-gradient(
            90deg,
            transparent 0 28px,
            rgba(255,255,255,0.018) 28px 30px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 18px,
            rgba(255,255,255,0.015) 18px 19px
        );
    background-size: 56px 56px, auto, auto;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 55%, transparent 100%);
}

.cd-hero-shine-layer {
    z-index: -2;
    background: radial-gradient(circle at 77% 48%, transparent 0 17%, rgba(255,255,255,0.06) 17.4%, transparent 18.2%),
        radial-gradient(circle at 77% 48%, transparent 0 23%, rgba(255,255,255,0.045) 23.4%, transparent 24.2%),
        radial-gradient(circle at 77% 48%, transparent 0 29%, rgba(255,255,255,0.04) 29.4%, transparent 30.2%),
        radial-gradient(circle at 77% 48%, transparent 0 35%, rgba(229,9,20,0.05) 35.4%, transparent 36.2%),
        linear-gradient(90deg, rgba(5,5,5,0.12), transparent 42%, rgba(5,5,5,0.08));
    opacity: 0.95;
}

.cd-hero-card-final .row, .cd-hero-content, .cd-hero-visual-final {
    position: relative;
    z-index: 2;
}

.cd-hero-card-final .cd-hero-content h1, .cd-hero-card-final .cd-hero-content p, .cd-hero-card-final .cd-hero-badge, .cd-hero-card-final .cd-hero-stats {
    position: relative;
    z-index: 3;
}

.cd-hero-card-final .col-lg-7 .cd-hero-content {
    position: relative;
}

.cd-hero-card-final .col-lg-7 .cd-hero-content::before {
    content: "";
    position: absolute;
    inset: -20px -18px -18px -18px;
    z-index: -1;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(0,0,0,0.28), rgba(0,0,0,0.12));
    opacity: 0.65;
    filter: blur(2px);
}

.cd-hero-visual-orbit {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 999px;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.16), transparent 58%),
        radial-gradient(circle at 50% 50%, rgba(229,9,20,0.14), transparent 72%);
    filter: blur(7px);
    opacity: 0.90;
    pointer-events: none;
}

.cd-hero-visual-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.13);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    box-shadow: 0 24px 70px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.10);
    pointer-events: none;
}

.cd-hero-main-logo-card {
    position: relative;
    z-index: 3;
    width: 286px;
    height: 286px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 32px 85px rgba(0,0,0,0.38),
        0 0 0 12px rgba(255,255,255,0.04),
        inset 0 0 0 1px rgba(0,0,0,0.04);
}

.cd-hero-main-logo-card::after {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0.8;
}

.cd-hero-platform-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 46px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.24s ease;
}

.cd-hero-platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.22));
}

.cd-hero-platform-icon:hover {
    transform: translateY(-4px) scale(1.04);
    background: linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.12));
    box-shadow: 0 24px 54px rgba(0,0,0,0.42),
        0 0 0 1px rgba(229,9,20,0.20);
}

@media (max-width: 991.98px) {
    .cd-hero-card-final .col-lg-7 .cd-hero-content::before {
        inset: -16px -14px -14px -14px;
        border-radius: 22px;
        opacity: 0.58;
    }

    .cd-hero-grid-layer {
        opacity: 0.18;
    }
}

@media (max-width: 767.98px) {
    .cd-hero-section-final::after {
        opacity: 0.05;
        background-size: 88px 88px;
    }

    .cd-hero-card-final {
        background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
            linear-gradient(135deg, rgba(5,5,5,0.96), rgba(10,10,10,0.92)) !important;
    }

    .cd-hero-pattern-layer {
        background: radial-gradient(circle at 78% 36%, rgba(255,255,255,0.07), transparent 16%),
            radial-gradient(circle at 78% 36%, rgba(229,9,20,0.10), transparent 26%),
            radial-gradient(circle at 18% 14%, rgba(229,9,20,0.10), transparent 18%);
    }

    .cd-hero-grid-layer {
        opacity: 0.12;
        background-size: 64px 64px, auto, auto;
    }

    .cd-hero-shine-layer {
        background: radial-gradient(circle at 77% 42%, transparent 0 16%, rgba(255,255,255,0.05) 16.5%, transparent 17.2%),
            radial-gradient(circle at 77% 42%, transparent 0 23%, rgba(255,255,255,0.04) 23.5%, transparent 24.1%),
            linear-gradient(90deg, rgba(5,5,5,0.16), transparent 42%, rgba(5,5,5,0.10));
    }

    .cd-hero-card-final .col-lg-7 .cd-hero-content::before {
        inset: -10px -8px -10px -8px;
        border-radius: 18px;
        opacity: 0.48;
    }
}

.cd-hero-card-final {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
}

.cd-hero-custom-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 48%, rgba(5, 5, 5, 0.70) 100%),
        var(--cd-hero-custom-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.cd-hero-pattern-layer {
    z-index: 1 !important;
}

.cd-hero-grid-layer {
    z-index: 1 !important;
}

.cd-hero-shine-layer {
    z-index: 2 !important;
}

.cd-hero-card-final .row, .cd-hero-content, .cd-hero-visual-final {
    position: relative !important;
    z-index: 5 !important;
}

.cd-hero-card-final.cd-hero-has-custom-bg::after {
    display: none !important;
}

.cd-hero-card-final.cd-hero-has-custom-bg .cd-hero-pattern-layer {
    background: radial-gradient(circle at 77% 47%, rgba(255, 255, 255, 0.08), transparent 16%),
        radial-gradient(circle at 77% 47%, rgba(229, 9, 20, 0.12), transparent 28%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.03) 46%, transparent 72%);
}

@media (max-width: 767.98px) {
    .cd-hero-custom-bg-layer {
        background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.82) 100%),
            var(--cd-hero-custom-bg);
        background-position: center;
    }
}

.cd-hero-card-final .row {
    position: relative !important;
    z-index: 10 !important;
}

.cd-hero-custom-bg-layer {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.80) 48%, rgba(5, 5, 5, 0.72) 100%),
        var(--cd-hero-custom-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    pointer-events: none !important;
}

.cd-hero-grid-layer {
    z-index: 2 !important;
}

.cd-hero-shine-layer {
    z-index: 3 !important;
}

.cd-hero-content, .cd-hero-visual-final {
    position: relative !important;
    z-index: 12 !important;
}

.cd-hero-visual-final {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    isolation: isolate !important;
    min-height: 390px !important;
    overflow: visible !important;
    text-align: initial !important;
}

.cd-hero-visual-orbit, .cd-hero-visual-ring {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    pointer-events: none !important;
}

.cd-hero-visual-orbit {
    width: 350px !important;
    height: 350px !important;
    border-radius: 999px !important;
    z-index: 1 !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 58%),
        radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.16), transparent 72%) !important;
    filter: blur(7px) !important;
    opacity: 0.92 !important;
}

.cd-hero-visual-ring {
    width: 320px !important;
    height: 320px !important;
    border-radius: 999px !important;
    z-index: 2 !important;
    transform: translate(-50%, -50%) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 56%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.11) !important;
}

.cd-hero-main-logo-card {
    position: relative !important;
    z-index: 5 !important;
    width: 286px !important;
    height: 286px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.38),
        0 0 0 12px rgba(255, 255, 255, 0.045),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
}

.cd-hero-main-logo-card .cd-hero-image {
    max-width: 78% !important;
    max-height: 78% !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12)) !important;
}

.cd-hero-platform-cloud {
    position: absolute !important;
    inset: 0 !important;
    z-index: 8 !important;
    pointer-events: none !important;
}

.cd-hero-platform-item {
    position: absolute !important;
    animation: cdHeroStableFloat 4.8s ease-in-out infinite !important;
}

.cd-hero-platform-item a {
    pointer-events: auto !important;
}

.cd-hero-platform-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 62px !important;
    height: 62px !important;
    padding: 11px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.09)) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.cd-hero-platform-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.cd-hero-platform-item-1 {
    top: 8% !important;
    left: 18% !important;
    animation-delay: 0s !important;
}

.cd-hero-platform-item-2 {
    top: 18% !important;
    right: 7% !important;
    animation-delay: 0.6s !important;
}

.cd-hero-platform-item-3 {
    right: 9% !important;
    bottom: 16% !important;
    animation-delay: 1.1s !important;
}

.cd-hero-platform-item-4 {
    left: 17% !important;
    bottom: 10% !important;
    animation-delay: 1.65s !important;
}

.cd-hero-platform-item-5 {
    left: 4% !important;
    top: 46% !important;
    animation-delay: 2.15s !important;
}

@keyframes cdHeroStableFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .cd-hero-card-final {
        padding: 34px !important;
    }

    .cd-hero-visual-final {
        display: flex !important;
        min-height: 330px !important;
        max-width: 430px !important;
        margin: 22px auto 0 !important;
        overflow: visible !important;
    }

    .cd-hero-visual-orbit {
        width: 310px !important;
        height: 310px !important;
    }

    .cd-hero-visual-ring {
        width: 282px !important;
        height: 282px !important;
    }

    .cd-hero-main-logo-card {
        width: 250px !important;
        height: 250px !important;
    }

    .cd-hero-platform-icon {
        width: 54px !important;
        height: 54px !important;
        padding: 9px !important;
        border-radius: 18px !important;
    }

    .cd-hero-platform-item-1 {
        top: 6% !important;
        left: 18% !important;
    }

    .cd-hero-platform-item-2 {
        top: 20% !important;
        right: 4% !important;
    }

    .cd-hero-platform-item-3 {
        right: 8% !important;
        bottom: 17% !important;
    }

    .cd-hero-platform-item-4 {
        left: 20% !important;
        bottom: 8% !important;
    }

    .cd-hero-platform-item-5 {
        left: 2% !important;
        top: 46% !important;
    }
}

@media (max-width: 767.98px) {
    .cd-hero-section {
        padding-top: 108px !important;
    }

    .cd-hero-card-final {
        padding: 24px 22px 28px !important;
        border-radius: 24px !important;
        overflow: hidden !important;
    }

    .cd-hero-shine-layer {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 38%),
            radial-gradient(circle at 82% 78%, rgba(229, 9, 20, 0.10), transparent 28%) !important;
        opacity: 0.55 !important;
    }

    .cd-hero-pattern-layer {
        background: radial-gradient(circle at 18% 12%, rgba(229, 9, 20, 0.11), transparent 22%),
            radial-gradient(circle at 76% 80%, rgba(255, 255, 255, 0.055), transparent 26%) !important;
        opacity: 0.85 !important;
    }

    .cd-hero-grid-layer {
        opacity: 0.10 !important;
        background-size: 64px 64px !important;
    }

    .cd-hero-custom-bg-layer {
        background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 45%, rgba(5, 5, 5, 0.82) 100%),
            var(--cd-hero-custom-bg) !important;
        background-position: center !important;
    }

    .cd-hero-content {
        text-align: left !important;
    }

    .cd-hero-content h1 {
        font-size: clamp(2.35rem, 10vw, 3.25rem) !important;
        line-height: 1.02 !important;
        margin: 18px 0 16px !important;
        letter-spacing: -0.06em !important;
    }

    .cd-hero-content p {
        font-size: 0.96rem !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
    }

    .cd-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-top: 22px !important;
    }

    .cd-hero-actions .btn {
        width: 100% !important;
        min-height: 44px !important;
        padding: 12px 14px !important;
        font-size: 0.86rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .cd-hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .cd-hero-stats div {
        min-width: 0 !important;
        padding: 11px 8px !important;
        border-radius: 15px !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.075) !important;
    }

    .cd-hero-stats strong {
        font-size: 1.05rem !important;
        line-height: 1.1 !important;
    }

    .cd-hero-stats span {
        margin-top: 3px !important;
        font-size: 0.68rem !important;
        line-height: 1.2 !important;
    }

    .cd-hero-image-wrap.cd-hero-visual-final {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: initial !important;
        min-height: 295px !important;
        max-width: 348px !important;
        margin: 24px auto 0 !important;
        overflow: visible !important;
    }

    .cd-hero-visual-final::before {
        content: "";
        position: absolute;
        top: 50% !important;
        left: 50% !important;
        width: 310px !important;
        height: 265px !important;
        z-index: 0 !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 30px !important;
        background: radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.09), transparent 45%),
            linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
        pointer-events: none !important;
    }

    .cd-hero-visual-orbit {
        width: 252px !important;
        height: 252px !important;
    }

    .cd-hero-visual-ring {
        width: 224px !important;
        height: 224px !important;
    }

    .cd-hero-main-logo-card {
        width: 196px !important;
        height: 196px !important;
        z-index: 5 !important;
    }

    .cd-hero-main-logo-card .cd-hero-image {
        max-width: 78% !important;
        max-height: 78% !important;
        margin: 0 !important;
    }

    .cd-hero-platform-item-1 {
        top: 4% !important;
        left: 18% !important;
    }
}

@media (max-width: 480px) {
    .cd-hero-card-final {
        padding: 22px 18px 26px !important;
    }

    .cd-hero-actions {
        grid-template-columns: 1fr !important;
    }

    .cd-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .cd-hero-stats div {
        padding: 10px 6px !important;
        border-radius: 14px !important;
    }

    .cd-hero-stats strong {
        font-size: 0.98rem !important;
    }

    .cd-hero-stats span {
        font-size: 0.62rem !important;
    }

    .cd-hero-image-wrap.cd-hero-visual-final {
        min-height: 270px !important;
        max-width: 306px !important;
        margin-top: 22px !important;
    }

    .cd-hero-visual-final::before {
        width: 286px !important;
        height: 244px !important;
        border-radius: 26px !important;
    }

    .cd-hero-visual-orbit {
        width: 224px !important;
        height: 224px !important;
    }

    .cd-hero-visual-ring {
        width: 198px !important;
        height: 198px !important;
    }

    .cd-hero-main-logo-card {
        width: 172px !important;
        height: 172px !important;
    }

    .cd-hero-platform-item-1 {
        top: 3% !important;
        left: 17% !important;
    }
}

@media (max-width: 360px) {
    .cd-hero-content h1 {
        font-size: 2.15rem !important;
    }

    .cd-hero-stats strong {
        font-size: 0.9rem !important;
    }

    .cd-hero-stats span {
        font-size: 0.58rem !important;
    }

    .cd-hero-image-wrap.cd-hero-visual-final {
        max-width: 280px !important;
        min-height: 250px !important;
    }

    .cd-hero-visual-final::before {
        width: 264px !important;
        height: 228px !important;
    }

    .cd-hero-main-logo-card {
        width: 158px !important;
        height: 158px !important;
    }
}

.cd-hero-pattern-layer, .cd-hero-grid-layer, .cd-hero-shine-layer {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
}

.cd-hero-shine-layer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%),
        radial-gradient(circle at 82% 80%, rgba(229, 9, 20, 0.08), transparent 28%) !important;
    opacity: 0.42 !important;
    z-index: 2 !important;
}

.cd-hero-pattern-layer {
    background: radial-gradient(circle at 14% 16%, rgba(229, 9, 20, 0.10), transparent 20%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.04), transparent 18%) !important;
    opacity: 0.88 !important;
    z-index: 1 !important;
}

.cd-hero-grid-layer {
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
    opacity: 0.08 !important;
    z-index: 1 !important;
}

.cd-hero-card-final .row, .cd-hero-content, .cd-hero-visual-final {
    position: relative !important;
    z-index: 10 !important;
}

.cd-hero-image-wrap.cd-hero-visual-final {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 390px !important;
    max-width: 440px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    text-align: initial !important;
}

.cd-hero-visual-final::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 58%),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    box-shadow: 0 20px 60px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.07);
    z-index: 0;
    pointer-events: none;
}

.cd-hero-visual-orbit, .cd-hero-visual-ring, .cd-hero-main-logo-card {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.cd-hero-visual-orbit {
    width: 350px !important;
    height: 350px !important;
    border-radius: 999px !important;
    z-index: 1 !important;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 58%),
        radial-gradient(circle at 50% 50%, rgba(229,9,20,0.10), transparent 72%) !important;
    filter: blur(6px) !important;
    opacity: 0.92 !important;
    pointer-events: none !important;
}

.cd-hero-visual-ring {
    width: 318px !important;
    height: 318px !important;
    border-radius: 999px !important;
    z-index: 2 !important;
    border: 1px solid rgba(255,255,255,0.13) !important;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 56%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)) !important;
    box-shadow: 0 22px 58px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.10) !important;
    pointer-events: none !important;
}

.cd-hero-main-logo-card {
    z-index: 5 !important;
    width: 286px !important;
    height: 286px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 28px 80px rgba(0,0,0,0.34),
        0 0 0 10px rgba(255,255,255,0.04),
        inset 0 0 0 1px rgba(0,0,0,0.04) !important;
}

.cd-hero-main-logo-card .cd-hero-image {
    max-width: 78% !important;
    max-height: 78% !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
}

.cd-hero-platform-item {
    position: absolute !important;
    animation: cdHeroLogoFloat 4.8s ease-in-out infinite !important;
}

.cd-hero-platform-icon {
    width: 62px !important;
    height: 62px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.cd-hero-platform-item-2 {
    top: 18% !important;
    right: 7% !important;
    animation-delay: 0.5s !important;
}

.cd-hero-platform-item-3 {
    right: 9% !important;
    bottom: 16% !important;
    animation-delay: 1s !important;
}

.cd-hero-platform-item-4 {
    left: 18% !important;
    bottom: 10% !important;
    animation-delay: 1.5s !important;
}

.cd-hero-platform-item-5 {
    left: 5% !important;
    top: 46% !important;
    animation-delay: 2s !important;
}

@keyframes cdHeroLogoFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .cd-hero-image-wrap.cd-hero-visual-final {
        min-height: 340px !important;
        max-width: 420px !important;
        margin: 24px auto 0 !important;
    }

    .cd-hero-visual-final::before {
        width: 320px !important;
        height: 320px !important;
    }

    .cd-hero-visual-orbit {
        width: 300px !important;
        height: 300px !important;
    }

    .cd-hero-visual-ring {
        width: 270px !important;
        height: 270px !important;
    }

    .cd-hero-main-logo-card {
        width: 238px !important;
        height: 238px !important;
    }

    .cd-hero-platform-icon {
        width: 52px !important;
        height: 52px !important;
        padding: 9px !important;
        border-radius: 16px !important;
    }
}

@media (max-width: 767.98px) {
    .cd-hero-card-final {
        padding: 24px 20px 26px !important;
        border-radius: 24px !important;
    }

    .cd-hero-content h1 {
        font-size: clamp(2.25rem, 9vw, 3rem) !important;
        line-height: 1.02 !important;
        margin: 16px 0 14px !important;
    }

    .cd-hero-content p {
        font-size: 0.96rem !important;
        line-height: 1.68 !important;
    }

    .cd-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .cd-hero-actions .btn {
        width: 100% !important;
        min-height: 44px !important;
        padding: 12px 14px !important;
        font-size: 0.86rem !important;
    }

    .cd-hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-top: 18px !important;
    }

    .cd-hero-stats div {
        min-width: 0 !important;
        text-align: center !important;
        padding: 10px 8px !important;
        border-radius: 14px !important;
    }

    .cd-hero-stats strong {
        font-size: 1rem !important;
    }

    .cd-hero-stats span {
        font-size: 0.66rem !important;
    }

    .cd-hero-shine-layer {
        background: linear-gradient(135deg, rgba(255,255,255,0.025), transparent 40%),
            radial-gradient(circle at 84% 82%, rgba(229,9,20,0.07), transparent 25%) !important;
        opacity: 0.36 !important;
    }

    .cd-hero-pattern-layer {
        background: radial-gradient(circle at 12% 14%, rgba(229,9,20,0.09), transparent 18%),
            radial-gradient(circle at 86% 20%, rgba(255,255,255,0.03), transparent 15%) !important;
    }

    .cd-hero-image-wrap.cd-hero-visual-final {
        min-height: 285px !important;
        max-width: 320px !important;
        margin: 24px auto 0 !important;
    }

    .cd-hero-visual-final::before {
        width: 270px !important;
        height: 270px !important;
        border-radius: 999px !important;
    }

    .cd-hero-visual-orbit {
        width: 240px !important;
        height: 240px !important;
    }

    .cd-hero-visual-ring {
        width: 212px !important;
        height: 212px !important;
    }

    .cd-hero-main-logo-card {
        width: 188px !important;
        height: 188px !important;
    }

    .cd-hero-main-logo-card .cd-hero-image {
        max-width: 76% !important;
        max-height: 76% !important;
    }

    .cd-hero-platform-icon {
        width: 40px !important;
        height: 40px !important;
        padding: 7px !important;
        border-radius: 13px !important;
    }

    .cd-hero-platform-item-1 {
        top: 8% !important;
        left: 18% !important;
    }

    .cd-hero-platform-item-2 {
        top: 20% !important;
        right: 8% !important;
    }

    .cd-hero-platform-item-3 {
        right: 10% !important;
        bottom: 16% !important;
    }

    .cd-hero-platform-item-4 {
        left: 20% !important;
        bottom: 10% !important;
    }

    .cd-hero-platform-item-5 {
        left: 6% !important;
        top: 48% !important;
    }
}

@media (max-width: 480px) {
    .cd-hero-image-wrap.cd-hero-visual-final {
        min-height: 260px !important;
        max-width: 290px !important;
    }

    .cd-hero-visual-final::before {
        width: 246px !important;
        height: 246px !important;
    }

    .cd-hero-main-logo-card {
        width: 170px !important;
        height: 170px !important;
    }

    .cd-hero-platform-icon {
        width: 35px !important;
        height: 35px !important;
        padding: 6px !important;
        border-radius: 12px !important;
    }
}

.cd-pricing-section {
    position: relative;
    padding: 95px 0;
    background: radial-gradient(circle at 10% 20%, rgba(229, 9, 20, 0.18), transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(229, 9, 20, 0.13), transparent 24%),
        linear-gradient(180deg, #060606 0%, #050505 100%);
    overflow: hidden;
    color: #ffffff;
}

.cd-pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.14;
    pointer-events: none;
}

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

.cd-section-head {
    max-width: 780px;
    margin-bottom: 48px;
}

.cd-pricing-badge, .cd-pricing-invite-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(229, 9, 20, 0.14);
    border: 1px solid rgba(229, 9, 20, 0.25);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.cd-pricing-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.cd-pricing-subtitle {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cd-pricing-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    border-radius: 28px;
    color: #ffffff;
    background: radial-gradient(circle at 90% 0%, rgba(229, 9, 20, 0.20), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.28s ease;
}

.cd-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.42);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(229, 9, 20, 0.22);
}

.cd-pricing-card.is-featured {
    border-color: rgba(229, 9, 20, 0.52);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(229, 9, 20, 0.30);
}

.cd-pricing-featured-tag {
    display: inline-flex;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #e50914, #ff3944);
    box-shadow: 0 14px 34px rgba(229, 9, 20, 0.28);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.cd-pricing-card-subtitle {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cd-pricing-card-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cd-pricing-price-wrap {
    margin-bottom: 16px;
}

.cd-pricing-price {
    color: #ffffff;
    font-size: 2.75rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.cd-pricing-price-suffix, .cd-pricing-duration {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 700;
}

.cd-pricing-revenue-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(229, 9, 20, 0.13);
    border: 1px solid rgba(229, 9, 20, 0.22);
    font-size: 0.88rem;
    font-weight: 900;
    margin-top: 4px;
}

.cd-pricing-card-body {
    flex: 1;
    margin-top: 22px;
}

.cd-pricing-features {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cd-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.55;
    font-weight: 700;
}

.cd-pricing-features li:last-child {
    border-bottom: none;
}

.cd-pricing-features i {
    color: #ff3844;
    font-size: 1rem;
    margin-top: 3px;
    flex: 0 0 auto;
}

.cd-pricing-card-footer {
    margin-top: 26px;
}

.cd-pricing-btn, .cd-pricing-invite-btn {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 16px;
    color: #ffffff !important;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.28), transparent 30%),
        linear-gradient(135deg, #e50914, #b90009);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.28);
    font-size: 0.94rem;
    font-weight: 950;
    transition: all 0.25s ease;
}

.cd-pricing-btn:hover, .cd-pricing-invite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(229, 9, 20, 0.38);
}

.cd-pricing-invite-box {
    margin-top: 44px;
    padding: 34px;
    border-radius: 28px;
    background: radial-gradient(circle at 90% 20%, rgba(229, 9, 20, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.cd-pricing-invite-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cd-pricing-invite-text {
    margin: 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.8;
    font-weight: 600;
}

.cd-pricing-invite-btn {
    width: auto;
    min-width: 220px;
    padding-left: 22px;
    padding-right: 22px;
}

.cd-pricing-bottom-note {
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .cd-pricing-section {
        padding: 78px 0;
    }

    .cd-pricing-card:hover {
        transform: none;
    }

    .cd-pricing-invite-btn {
        width: 100%;
    }
}

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

    .cd-section-head {
        margin-bottom: 34px;
    }

    .cd-pricing-title {
        font-size: 2rem;
    }

    .cd-pricing-subtitle {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .cd-pricing-card {
        padding: 26px 22px 24px;
        border-radius: 24px;
    }

    .cd-pricing-card-title {
        font-size: 1.5rem;
    }

    .cd-pricing-price {
        font-size: 2.25rem;
    }

    .cd-pricing-features li {
        padding: 10px 0;
        font-size: 0.91rem;
    }

    .cd-pricing-invite-box {
        padding: 26px 22px;
        border-radius: 24px;
        margin-top: 34px;
    }

    .cd-pricing-invite-title {
        font-size: 1.45rem;
    }

    .cd-pricing-invite-text {
        font-size: 0.93rem;
        line-height: 1.72;
    }
}

.cd-payment-page-section {
    position: relative;
    padding: 130px 0 90px;
    min-height: 100vh;
    color: #ffffff;
    background: radial-gradient(circle at 10% 10%, rgba(229, 9, 20, 0.20), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #050505 0%, #090909 100%);
    overflow: hidden;
}

.cd-payment-page-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.14;
    pointer-events: none;
}

.cd-payment-page-section .container {
    position: relative;
    z-index: 2;
}

.cd-payment-page-head {
    max-width: 820px;
    margin-bottom: 42px;
}

.cd-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin-bottom: 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.26);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cd-payment-page-head h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 5vw, 3.25rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.cd-payment-page-head p {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cd-payment-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    color: #ffffff;
    background: radial-gradient(circle at 100% 0%, rgba(229, 9, 20, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cd-payment-card h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cd-payment-plan-box {
    padding: 22px;
    margin-bottom: 22px;
    border-radius: 22px;
    background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.28), transparent 36%),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.cd-payment-plan-box span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.cd-payment-plan-box h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 950;
}

.cd-payment-plan-box strong {
    display: block;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.cd-payment-plan-box small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 800;
}

.cd-payment-plan-select {
    margin-bottom: 24px;
}

.cd-payment-card .form-label {
    color: #ffffff;
    font-weight: 850;
}

.cd-payment-card .form-control, .cd-payment-card .form-select {
    min-height: 48px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: none;
}

.cd-payment-card .form-control:focus, .cd-payment-card .form-select:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.095);
    border-color: rgba(229, 9, 20, 0.60);
    box-shadow: 0 0 0 0.18rem rgba(229, 9, 20, 0.14);
}

.cd-payment-card .form-control::file-selector-button {
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: #e50914;
    margin-right: 12px;
}

.cd-payment-card .text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
}

.cd-payment-details-box {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cd-payment-details-box h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 950;
}

.cd-payment-qr {
    display: inline-flex;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: #ffffff;
}

.cd-payment-qr img {
    width: 190px;
    height: 190px;
    object-fit: contain;
}

.cd-payment-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cd-payment-detail-row span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    font-weight: 800;
}

.cd-payment-detail-row strong {
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 900;
    text-align: right;
    word-break: break-word;
}

.cd-payment-instruction {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(229, 9, 20, 0.11);
    border: 1px solid rgba(229, 9, 20, 0.18);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 700;
}

.cd-payment-submit-btn {
    min-height: 52px;
    padding: 12px 22px;
    border-radius: 16px;
    color: #ffffff !important;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.28), transparent 30%),
        linear-gradient(135deg, #e50914, #b90009);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.28);
    font-size: 0.96rem;
    font-weight: 950;
}

.cd-payment-submit-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(229, 9, 20, 0.38);
}

@media (max-width: 767.98px) {
    .cd-payment-page-section {
        padding: 110px 0 70px;
    }

    .cd-payment-card {
        padding: 22px;
        border-radius: 24px;
    }

    .cd-payment-plan-box {
        padding: 20px;
        border-radius: 20px;
    }

    .cd-payment-plan-box h3 {
        font-size: 1.5rem;
    }

    .cd-payment-plan-box strong {
        font-size: 2.15rem;
    }

    .cd-payment-detail-row {
        display: block;
    }

    .cd-payment-detail-row strong {
        display: block;
        text-align: left;
        margin-top: 4px;
    }

    .cd-payment-qr img {
        width: 170px;
        height: 170px;
    }
}

.cd-gateway-section {
    position: relative;
    padding: 128px 0 88px;
    min-height: 100vh;
    color: #ffffff;
    background: radial-gradient(circle at 8% 10%, rgba(229, 9, 20, 0.22), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #050505 0%, #090909 100%);
    overflow: hidden;
}

.cd-gateway-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.14;
    pointer-events: none;
}

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

.cd-gateway-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.cd-gateway-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
        rgba(5,5,5,0.70);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.cd-gateway-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cd-gateway-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    padding: 8px;
}

.cd-gateway-brand span {
    display: block;
    color: rgba(255,255,255,0.56);
    font-size: 0.82rem;
    font-weight: 800;
}

.cd-gateway-brand strong {
    display: block;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 950;
}

.cd-gateway-status-pill, .cd-gateway-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.26);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cd-gateway-head {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.cd-gateway-head h1 {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.cd-gateway-head p {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(255,255,255,0.72);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cd-gateway-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    color: #ffffff;
    background: radial-gradient(circle at 100% 0%, rgba(229, 9, 20, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
        #0a0a0a;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.cd-gateway-card-title {
    margin-bottom: 22px;
}

.cd-gateway-card-title span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,0.56);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cd-gateway-card-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cd-gateway-amount-box {
    padding: 24px;
    margin-bottom: 22px;
    border-radius: 24px;
    background: radial-gradient(circle at 0% 0%, rgba(229,9,20,0.30), transparent 38%),
        rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
}

.cd-gateway-amount-box span {
    display: block;
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    font-weight: 850;
}

.cd-gateway-amount-box strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.cd-gateway-amount-box small {
    display: block;
    margin-top: 9px;
    color: rgba(255,255,255,0.70);
    font-weight: 850;
}

.cd-gateway-plan-change {
    margin-bottom: 22px;
}

.cd-gateway-card .form-label {
    color: #ffffff;
    font-weight: 850;
}

.cd-gateway-card .form-control, .cd-gateway-card .form-select {
    min-height: 48px;
    color: #ffffff;
    background: rgba(255,255,255,0.075);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-shadow: none;
}

.cd-gateway-card .form-control:focus, .cd-gateway-card .form-select:focus {
    color: #ffffff;
    background: rgba(255,255,255,0.095);
    border-color: rgba(229,9,20,0.60);
    box-shadow: 0 0 0 0.18rem rgba(229,9,20,0.14);
}

.cd-gateway-card .form-control::file-selector-button {
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: #e50914;
    margin-right: 12px;
}

.cd-gateway-card .text-muted {
    color: rgba(255,255,255,0.55) !important;
}

.cd-gateway-payment-box {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.cd-gateway-payment-box h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 950;
}

.cd-gateway-qr {
    display: inline-flex;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: #ffffff;
}

.cd-gateway-qr img {
    width: 210px;
    height: 210px;
    object-fit: contain;
}

.cd-gateway-copy-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cd-gateway-copy-row span {
    color: rgba(255,255,255,0.58);
    font-size: 0.88rem;
    font-weight: 850;
}

.cd-gateway-copy-row strong {
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 950;
    word-break: break-word;
}

.cd-gateway-copy-btn {
    min-height: 34px;
    padding: 6px 12px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(229,9,20,0.92);
    font-size: 0.76rem;
    font-weight: 900;
}

.cd-gateway-pay-btn, .cd-gateway-submit-btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    border-radius: 16px;
    color: #ffffff !important;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.28), transparent 30%),
        linear-gradient(135deg, #e50914, #b90009);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 42px rgba(229,9,20,0.28);
    font-size: 0.96rem;
    font-weight: 950;
}

.cd-gateway-pay-btn:hover, .cd-gateway-submit-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(229,9,20,0.38);
}

.cd-gateway-instruction {
    margin-top: 16px;
    padding: 14px 15px;
    border-radius: 16px;
    color: rgba(255,255,255,0.74);
    background: rgba(229,9,20,0.11);
    border: 1px solid rgba(229,9,20,0.18);
    font-size: 0.90rem;
    line-height: 1.7;
    font-weight: 750;
}

.cd-gateway-success-box {
    max-width: 820px;
    margin: 36px auto 0;
    padding: 42px 34px;
    border-radius: 32px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(229,9,20,0.24), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.030)),
        #0a0a0a;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 28px 80px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.cd-gateway-success-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.32), transparent 34%),
        linear-gradient(135deg, #16a34a, #067a31);
    box-shadow: 0 18px 44px rgba(22,163,74,0.28);
}

.cd-gateway-success-icon i {
    font-size: 2.4rem;
}

.cd-gateway-success-box h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.cd-gateway-success-box p {
    max-width: 680px;
    margin: 16px auto 0;
    color: rgba(255,255,255,0.72);
    font-size: 1.02rem;
    line-height: 1.8;
}

.cd-gateway-success-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0 18px;
}

.cd-gateway-success-details div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
}

.cd-gateway-success-details span {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    font-weight: 850;
}

.cd-gateway-success-details strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
}

.cd-gateway-redirect-note {
    display: inline-flex;
    padding: 11px 16px;
    border-radius: 999px;
    color: rgba(255,255,255,0.78);
    background: rgba(229,9,20,0.12);
    border: 1px solid rgba(229,9,20,0.20);
    font-size: 0.92rem;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .cd-gateway-section {
        padding: 108px 0 70px;
    }

    .cd-gateway-brand-row {
        display: block;
        padding: 16px;
        border-radius: 22px;
    }

    .cd-gateway-status-pill {
        margin-top: 14px;
    }

    .cd-gateway-card {
        padding: 22px;
        border-radius: 24px;
    }

    .cd-gateway-amount-box {
        padding: 20px;
        border-radius: 21px;
    }

    .cd-gateway-amount-box strong {
        font-size: 2.35rem;
    }

    .cd-gateway-qr img {
        width: 180px;
        height: 180px;
    }

    .cd-gateway-copy-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .cd-gateway-success-box {
        padding: 32px 22px;
        border-radius: 26px;
    }

    .cd-gateway-success-details {
        grid-template-columns: 1fr;
    }
}

.cd-gateway-qr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.cd-gateway-provider-card {
    padding: 18px;
    border-radius: 22px;
    background: radial-gradient(circle at 100% 0%, rgba(229, 9, 20, 0.13), transparent 34%),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.cd-gateway-provider-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.cd-gateway-provider-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.cd-gateway-provider-icon.phonepe {
    background: linear-gradient(135deg, #5f259f, #2d0d58);
}

.cd-gateway-provider-icon.gpay {
    background: linear-gradient(135deg, #1a73e8, #0f9d58);
}

.cd-gateway-provider-head strong {
    display: block;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 950;
}

.cd-gateway-provider-head small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 750;
}

.cd-gateway-provider-card .cd-gateway-qr {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 20px;
    background: #ffffff;
}

.cd-gateway-provider-card .cd-gateway-qr img {
    width: 210px;
    height: 210px;
    object-fit: contain;
}

.cd-gateway-no-qr {
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(229, 9, 20, 0.10);
    border: 1px solid rgba(229, 9, 20, 0.18);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
}

.cd-gateway-copy-row.provider-copy {
    grid-template-columns: 58px 1fr auto;
    gap: 8px;
}

.cd-gateway-pay-btn.small-pay-btn {
    min-height: 46px;
    margin-top: 14px;
    font-size: 0.88rem;
}

.cd-gateway-upi-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cd-gateway-upi-name span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
    font-weight: 850;
}

.cd-gateway-upi-name strong {
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 950;
    text-align: right;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .cd-gateway-qr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cd-gateway-provider-card .cd-gateway-qr img {
        width: 170px;
        height: 170px;
    }

    .cd-gateway-copy-row.provider-copy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .cd-gateway-provider-card {
        padding: 16px;
        border-radius: 20px;
    }

    .cd-gateway-provider-card .cd-gateway-qr img {
        width: 180px;
        height: 180px;
    }

    .cd-gateway-copy-row.provider-copy {
        grid-template-columns: 1fr;
    }

    .cd-gateway-upi-name {
        display: block;
    }

    .cd-gateway-upi-name strong {
        display: block;
        text-align: left;
        margin-top: 4px;
    }
}

.cdpay-page {
    background: radial-gradient(circle at 10% 20%, rgba(229, 9, 20, 0.18), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(229, 9, 20, 0.12), transparent 22%),
        linear-gradient(180deg, #030303 0%, #07090f 48%, #050505 100%);
}

.cdpay-section {
    position: relative;
    padding: 120px 0 90px;
    overflow: hidden;
}

.cdpay-shell {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(9, 11, 18, 0.9);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.cdpay-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(229, 9, 20, 0.06), transparent 30%, transparent 70%, rgba(35, 92, 255, 0.08)),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.015) 0,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 84px
        );
    pointer-events: none;
}

.cdpay-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 34px;
}

.cdpay-hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
}

.cdpay-hero-brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.cdpay-hero-brand span {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cdpay-hero-brand strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.cdpay-top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.22);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cdpay-hero h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 950;
    line-height: 1.06;
}

.cdpay-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.78;
}

.cdpay-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.cdpay-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 850;
}

.cdpay-card {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 24px;
    border-radius: 28px;
    background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
        rgba(12, 14, 20, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.cdpay-card-head {
    margin-bottom: 18px;
}

.cdpay-card-head span {
    display: inline-block;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.52);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cdpay-card-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 950;
}

.cdpay-plan-stack, .cdpay-method-stack, .cdpay-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cdpay-plan-card {
    display: block;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.25s ease;
}

.cdpay-plan-card:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 9, 20, 0.34);
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.12);
}

.cdpay-plan-card.active {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.16), rgba(255,255,255,0.05));
    border-color: rgba(229, 9, 20, 0.45);
    box-shadow: 0 14px 34px rgba(229, 9, 20, 0.18);
}

.cdpay-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.cdpay-plan-top strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.cdpay-plan-selected {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.18);
    border: 1px solid rgba(229, 9, 20, 0.25);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cdpay-plan-price {
    color: #ffffff;
    font-size: 1.32rem;
    font-weight: 950;
    line-height: 1.1;
}

.cdpay-plan-card small {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,0.58);
    font-size: 0.82rem;
    font-weight: 700;
}

.cdpay-price-box {
    padding: 18px 20px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.12), rgba(255,255,255,0.035)),
        rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.cdpay-price-box span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.58);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cdpay-price-box strong {
    display: block;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 950;
    line-height: 1.05;
}

.cdpay-price-box small {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,0.66);
    font-size: 0.9rem;
    font-weight: 750;
}

.cdpay-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 750;
}

.cdpay-info-item i {
    color: #ff3341;
    font-size: 1rem;
}

.cdpay-method-card {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.cdpay-method-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cdpay-method-badge {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.cdpay-method-badge.phonepe {
    background: linear-gradient(135deg, #5f259f, #2f1455);
}

.cdpay-method-badge.gpay {
    background: linear-gradient(135deg, #1a73e8, #0f9d58);
}

.cdpay-method-head strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.cdpay-method-head small {
    display: block;
    color: rgba(255,255,255,0.56);
    font-size: 0.8rem;
    font-weight: 700;
}

.cdpay-qr-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    margin-bottom: 14px;
}

.cdpay-qr-box img {
    width: 210px;
    height: 210px;
    object-fit: contain;
}

.cdpay-upi-row {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.cdpay-upi-row span {
    color: rgba(255,255,255,0.56);
    font-size: 0.77rem;
    font-weight: 850;
    text-transform: uppercase;
}

.cdpay-upi-row strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    word-break: break-all;
}

.cdpay-copy-btn {
    appearance: none;
    border: none;
    outline: none;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff1f2d, #c4000d);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cdpay-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.26);
}

.cdpay-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff2533, #d4000f 60%, #ff3743);
    color: #ffffff !important;
    text-decoration: none;
    border: none;
    outline: none;
    font-size: 0.94rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
    box-shadow: 0 16px 34px rgba(229, 9, 20, 0.24);
}

.cdpay-primary-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.32);
}

.cdpay-small-btn {
    margin-top: 14px;
    min-height: 46px;
    font-size: 0.88rem;
}

.cdpay-bottom-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.cdpay-note-title {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
}

.cdpay-bottom-note p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

.cdpay-upi-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.cdpay-upi-name span {
    color: rgba(255,255,255,0.58);
    font-size: 0.82rem;
    font-weight: 850;
}

.cdpay-upi-name strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    text-align: right;
}

.cdpay-form .form-label {
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 850;
    margin-bottom: 8px;
}

.cdpay-input, .cdpay-input.form-select, .cdpay-input.form-control {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.045) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 750;
    box-shadow: none !important;
}

textarea.cdpay-input {
    min-height: 140px;
    resize: vertical;
}

.cdpay-input::placeholder, .cdpay-input.form-control::placeholder {
    color: rgba(255,255,255,0.42);
}

.cdpay-input:focus, .cdpay-input.form-select:focus, .cdpay-input.form-control:focus {
    border-color: rgba(229, 9, 20, 0.44) !important;
    background: rgba(255,255,255,0.06) !important;
    box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.12) !important;
    color: #ffffff !important;
}

.cdpay-input.form-select option {
    color: #111111;
    background: #ffffff;
}

.cdpay-field-help {
    display: inline-block;
    margin-top: 8px;
    color: rgba(255,255,255,0.54);
    font-size: 0.78rem;
    font-weight: 700;
}

.cdpay-submit-btn {
    margin-top: 4px;
}

.cdpay-empty-box {
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.18);
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    font-weight: 800;
}

.cdpay-success-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cdpay-success-card {
    width: 100%;
    max-width: 760px;
    padding: 40px 34px;
    text-align: center;
    border-radius: 30px;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(8, 10, 16, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.cdpay-success-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2331, #cb000c);
    color: #ffffff;
    font-size: 2.6rem;
    box-shadow: 0 18px 40px rgba(229, 9, 20, 0.28);
}

.cdpay-success-card h1 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 950;
}

.cdpay-success-card p {
    margin: 0 auto 24px;
    max-width: 620px;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
}

.cdpay-success-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.cdpay-success-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.cdpay-success-item span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.52);
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
}

.cdpay-success-item strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    word-break: break-word;
}

.cdpay-success-note {
    margin-bottom: 22px;
    color: rgba(255,255,255,0.76);
    font-size: 0.95rem;
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .cdpay-shell {
        padding: 28px;
    }
}

@media (max-width: 991.98px) {
    .cdpay-section {
        padding: 100px 0 70px;
    }

    .cdpay-shell {
        padding: 22px;
        border-radius: 26px;
    }

    .cdpay-card {
        padding: 20px;
        border-radius: 24px;
    }

    .cdpay-success-grid {
        grid-template-columns: 1fr;
    }
}

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

    .cdpay-shell {
        padding: 18px;
        border-radius: 22px;
    }

    .cdpay-hero {
        margin-bottom: 24px;
    }

    .cdpay-hero-brand {
        width: 100%;
        justify-content: center;
    }

    .cdpay-hero-meta {
        gap: 10px;
    }

    .cdpay-meta-pill {
        width: 100%;
        justify-content: center;
    }

    .cdpay-card {
        padding: 18px;
        border-radius: 22px;
    }

    .cdpay-upi-row {
        grid-template-columns: 1fr;
    }

    .cdpay-upi-name {
        display: block;
    }

    .cdpay-upi-name strong {
        display: block;
        margin-top: 5px;
        text-align: left;
    }

    .cdpay-qr-box img {
        width: 180px;
        height: 180px;
    }

    .cdpay-success-card {
        padding: 28px 20px;
    }
}

@media (max-width: 575.98px) {
    .cdpay-shell {
        padding: 14px;
        border-radius: 20px;
    }

    .cdpay-card {
        padding: 16px;
        border-radius: 20px;
    }

    .cdpay-hero h1 {
        font-size: 1.8rem;
    }

    .cdpay-price-box strong {
        font-size: 1.8rem;
    }

    .cdpay-qr-box img {
        width: 165px;
        height: 165px;
    }
}

.cdcx-page {
    min-height: 100vh;
    background: radial-gradient(circle at 12% 20%, rgba(229, 9, 20, 0.18), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(56, 105, 255, 0.14), transparent 26%),
        linear-gradient(180deg, #030305 0%, #07080d 48%, #050505 100%);
}

.cdcx-section {
    position: relative;
    padding: 118px 0 88px;
    overflow: hidden;
}

.cdcx-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.16;
    pointer-events: none;
}

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

.cdcx-shell {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(7, 9, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.cdcx-hero {
    text-align: center;
    padding: 12px 12px 24px;
}

.cdcx-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.cdcx-brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.cdcx-brand span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.70rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

.cdcx-brand strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 950;
    text-align: left;
}

.cdcx-kicker {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.13);
    border: 1px solid rgba(229, 9, 20, 0.25);
    color: #ffffff;
    font-size: 0.70rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cdcx-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.03;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.cdcx-hero p {
    max-width: 700px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    line-height: 1.75;
}

.cdcx-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.cdcx-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 850;
}

.cdcx-alert {
    max-width: 960px;
    margin: 0 auto 22px;
}

.cdcx-plan-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.cdcx-plan-pill {
    position: relative;
    display: block;
    padding: 18px 20px;
    border-radius: 22px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.020)),
        rgba(255, 255, 255, 0.020);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.cdcx-plan-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 9, 20, 0.34);
    box-shadow: 0 16px 34px rgba(229, 9, 20, 0.12);
}

.cdcx-plan-pill.active {
    background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(229, 9, 20, 0.16), rgba(255, 255, 255, 0.04));
    border-color: rgba(229, 9, 20, 0.42);
    box-shadow: 0 18px 44px rgba(229, 9, 20, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cdcx-plan-pill span {
    display: block;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 950;
}

.cdcx-plan-pill strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 1.42rem;
    line-height: 1;
    font-weight: 950;
}

.cdcx-plan-pill em {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: #e50914;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cdcx-summary-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.4fr;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.050), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.020);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cdcx-summary-card div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.030);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.cdcx-summary-card span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cdcx-summary-card strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.35;
}

.cdcx-summary-center strong {
    font-size: 1.55rem;
    line-height: 1;
}

.cdcx-card {
    height: 100%;
    padding: 24px;
    border-radius: 28px;
    background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.10), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.020)),
        rgba(11, 13, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cdcx-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.cdcx-card-head span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cdcx-card-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.cdcx-card-head small {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: right;
}

.cdcx-method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cdcx-method-card {
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.020)),
        rgba(255, 255, 255, 0.018);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.cdcx-method-card.phonepe {
    box-shadow: inset 0 0 0 1px rgba(95, 37, 159, 0.13);
}

.cdcx-method-card.gpay {
    box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.13);
}

.cdcx-method-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cdcx-method-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.cdcx-method-card.phonepe .cdcx-method-logo {
    background: linear-gradient(135deg, #6d35b7, #3b176d);
}

.cdcx-method-card.gpay .cdcx-method-logo {
    background: linear-gradient(135deg, #1a73e8, #0f9d58);
}

.cdcx-method-head strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 950;
}

.cdcx-method-head span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-weight: 750;
}

.cdcx-qr-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.cdcx-qr-box img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.cdcx-upi-row {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 12px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.040);
    border: 1px solid rgba(255, 255, 255, 0.065);
}

.cdcx-upi-row span {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
}

.cdcx-upi-row strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 950;
    word-break: break-all;
}

.cdcx-upi-row button {
    border: none;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff2432, #bd000b);
    font-size: 0.74rem;
    font-weight: 950;
}

.cdcx-btn {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 16px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0.92rem;
    line-height: 1.2;
    font-weight: 950;
    transition: all 0.24s ease;
}

.cdcx-btn-primary {
    color: #ffffff !important;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
        linear-gradient(135deg, #ff2432, #d4000f 62%, #ff4652);
    box-shadow: 0 16px 34px rgba(229, 9, 20, 0.24);
}

.cdcx-btn-primary:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 22px 44px rgba(229, 9, 20, 0.34);
}

.cdcx-instruction-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px;
    margin-top: 20px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.032);
    border: 1px solid rgba(255, 255, 255, 0.065);
}

.cdcx-instruction-card span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
}

.cdcx-instruction-card strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 950;
}

.cdcx-instruction-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 700;
}

.cdcx-form-card {
    position: sticky;
    top: 100px;
}

.cdcx-form .form-label {
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 850;
    margin-bottom: 8px;
}

.cdcx-input, .cdcx-input.form-control, .cdcx-input.form-select {
    min-height: 50px;
    padding: 12px 15px;
    border-radius: 15px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: none !important;
    font-size: 0.92rem;
    font-weight: 750;
}

textarea.cdcx-input {
    min-height: 116px;
    resize: vertical;
}

.cdcx-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.cdcx-input:focus, .cdcx-input.form-control:focus, .cdcx-input.form-select:focus {
    background: rgba(255, 255, 255, 0.060) !important;
    border-color: rgba(229, 9, 20, 0.48) !important;
    box-shadow: 0 0 0 0.20rem rgba(229, 9, 20, 0.12) !important;
}

.cdcx-input.form-select option {
    color: #111111;
    background: #ffffff;
}

.cdcx-input::file-selector-button {
    border: none;
    min-height: 32px;
    margin-right: 10px;
    padding: 6px 12px;
    border-radius: 10px;
    color: #ffffff;
    background: #e50914;
    font-weight: 900;
}

.cdcx-help {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.76rem;
    font-weight: 700;
}

.cdcx-submit {
    margin-top: 4px;
}

.cdcx-empty {
    padding: 18px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(229, 9, 20, 0.10);
    border: 1px solid rgba(229, 9, 20, 0.18);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
}

.cdcx-success-shell {
    max-width: 820px;
    margin: 0 auto;
}

.cdcx-success-card {
    padding: 42px 36px;
    border-radius: 32px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.020)),
        rgba(8, 10, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.40);
}

.cdcx-success-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #087d35);
    box-shadow: 0 18px 44px rgba(22, 163, 74, 0.28);
}

.cdcx-success-icon i {
    font-size: 2.45rem;
}

.cdcx-success-card h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.cdcx-success-card p {
    max-width: 650px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.cdcx-success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0 20px;
}

.cdcx-success-grid div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.040);
    border: 1px solid rgba(255, 255, 255, 0.065);
}

.cdcx-success-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.cdcx-success-grid strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    word-break: break-word;
}

.cdcx-redirect-note {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 850;
}

@media (max-width: 1199.98px) {
    .cdcx-method-grid {
        grid-template-columns: 1fr;
    }

    .cdcx-form-card {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .cdcx-section {
        padding: 98px 0 68px;
    }

    .cdcx-shell {
        padding: 22px;
        border-radius: 28px;
    }

    .cdcx-plan-row, .cdcx-summary-card, .cdcx-instruction-card {
        grid-template-columns: 1fr;
    }

    .cdcx-method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cdcx-qr-box img {
        width: 190px;
        height: 190px;
    }

    .cdcx-card-head {
        display: block;
    }

    .cdcx-card-head small {
        display: block;
        text-align: left;
        margin-top: 6px;
    }
}

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

    .cdcx-shell {
        padding: 16px;
        border-radius: 24px;
    }

    .cdcx-hero h1 {
        font-size: 2rem;
    }

    .cdcx-trust-row span {
        width: 100%;
        justify-content: center;
    }

    .cdcx-method-grid {
        grid-template-columns: 1fr;
    }

    .cdcx-card {
        padding: 18px;
        border-radius: 22px;
    }

    .cdcx-upi-row {
        grid-template-columns: 1fr;
    }

    .cdcx-summary-center strong {
        font-size: 1.35rem;
    }

    .cdcx-success-grid {
        grid-template-columns: 1fr;
    }

    .cdcx-success-card {
        padding: 32px 22px;
        border-radius: 26px;
    }
}

@media (max-width: 575.98px) {
    .cdcx-shell {
        padding: 14px;
    }

    .cdcx-brand {
        width: 100%;
        justify-content: center;
    }

    .cdcx-qr-box img {
        width: 170px;
        height: 170px;
    }
}

.cdcx-topbar {
    max-width: 760px;
    margin: 0 auto 20px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
        rgba(10, 12, 18, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.cdcx-topbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.cdcx-topbar-brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
}

.cdcx-topbar-divider {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
}

.cdcx-topbar-content {
    text-align: left;
    min-width: 170px;
}

.cdcx-topbar-content span {
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.cdcx-topbar-content strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.cdcx-topbar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.22), rgba(229, 9, 20, 0.08));
    border: 1px solid rgba(229, 9, 20, 0.30);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.12);
}

@media (max-width: 767.98px) {
    .cdcx-topbar {
        max-width: 100%;
        padding: 12px;
        gap: 10px;
        border-radius: 18px;
        flex-direction: column;
    }

    .cdcx-topbar-divider {
        display: none;
    }

    .cdcx-topbar-content {
        text-align: center;
        min-width: auto;
    }

    .cdcx-topbar-badge {
        width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
        padding: 10px 14px;
    }
}

.cdcx-gateway-badge-bar {
    width: min(100%, 820px);
    margin: 0 auto 22px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 24px;
    background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.025)),
        rgba(8, 10, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.cdcx-gateway-left, .cdcx-gateway-right {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.cdcx-gateway-left {
    padding-left: 2px;
}

.cdcx-gateway-logo-box {
    width: 118px;
    height: 52px;
    flex: 0 0 118px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.080), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.085);
}

.cdcx-gateway-logo-box img {
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
    display: block;
}

.cdcx-gateway-brand-text {
    min-width: 0;
    text-align: left;
}

.cdcx-gateway-brand-text span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.72rem;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cdcx-gateway-brand-text strong {
    display: block;
    color: #ffffff;
    font-size: 1.04rem;
    line-height: 1.18;
    font-weight: 950;
    white-space: nowrap;
}

.cdcx-gateway-right {
    position: relative;
    padding: 10px 12px 10px 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.26), transparent 28%),
        linear-gradient(135deg, #e50914, #9f0008 58%, #ff2835);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(229, 9, 20, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    overflow: hidden;
}

.cdcx-gateway-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 42%, rgba(255, 255, 255, 0.10));
    opacity: 0.65;
    pointer-events: none;
}

.cdcx-gateway-live-dot {
    position: relative;
    z-index: 2;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18),
        0 0 18px rgba(255, 255, 255, 0.55);
}

.cdcx-gateway-badge-text {
    position: relative;
    z-index: 2;
    min-width: 0;
    text-align: left;
}

.cdcx-gateway-badge-text span {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.68rem;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.cdcx-gateway-badge-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.cdcx-gateway-lock {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #e50914;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.cdcx-gateway-lock i {
    font-size: 1rem;
}

.cdcx-hero .cdcx-kicker, .cdcx-hero .cdcx-brand {
    display: none !important;
}

@media (max-width: 991.98px) {
    .cdcx-gateway-badge-bar {
        width: min(100%, 760px);
    }

    .cdcx-gateway-logo-box {
        width: 106px;
        flex-basis: 106px;
    }

    .cdcx-gateway-brand-text strong {
        font-size: 0.98rem;
    }

    .cdcx-gateway-badge-text strong {
        font-size: 0.82rem;
    }
}

@media (max-width: 767.98px) {
    .cdcx-gateway-badge-bar {
        padding: 12px;
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .cdcx-gateway-left {
        justify-content: center;
    }

    .cdcx-gateway-brand-text {
        text-align: left;
    }

    .cdcx-gateway-right {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
        padding: 12px;
    }

    .cdcx-gateway-badge-text strong {
        white-space: normal;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .cdcx-gateway-left {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
    }

    .cdcx-gateway-logo-box {
        width: 140px;
        flex-basis: auto;
    }

    .cdcx-gateway-brand-text {
        text-align: center;
    }

    .cdcx-gateway-right {
        gap: 10px;
    }

    .cdcx-gateway-badge-text {
        text-align: left;
    }

    .cdcx-gateway-lock {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}

/* =========================================================
   CDMedia Dark Section Bottom Shadow Remove Fix
   Safe Live Patch - Paste at the very bottom of style.css
   ========================================================= */

/* Hero section bottom shadow / fade remove */
html body .cd-hero-premium-section::after,
html body .cd-hero-section::after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    opacity: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Mobile App section bottom shadow / fade remove */
html body .cd-mobile-premium-section::after,
html body .cd-mobile-section::after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    opacity: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Remove any section-level shadow from dark sections */
html body .cd-hero-premium-section,
html body .cd-hero-section,
html body .cd-mobile-premium-section,
html body .cd-mobile-section {
    box-shadow: none !important;
    filter: none !important;
}

/* Remove shadow from immediate next white sections */
html body .cd-services-premium-section,
html body .cd-services-section,
html body .cd-service-section,
html body .cd-mastering-premium-section,
html body .cd-mastering-section-final,
html body .cd-mastering-section {
    box-shadow: none !important;
    filter: none !important;
}

/* Tight clean transition: Hero to Services */
html body .cd-hero-premium-section + .cd-services-premium-section,
html body .cd-hero-section + .cd-services-premium-section,
html body .cd-hero-premium-section + .cd-services-section,
html body .cd-hero-section + .cd-services-section {
    margin-top: 0 !important;
}

/* Tight clean transition: Mobile App to Mastering */
html body .cd-mobile-premium-section + .cd-mastering-premium-section,
html body .cd-mobile-section + .cd-mastering-premium-section,
html body .cd-mobile-premium-section + .cd-mastering-section-final,
html body .cd-mobile-section + .cd-mastering-section-final,
html body .cd-mobile-premium-section + .cd-mastering-section,
html body .cd-mobile-section + .cd-mastering-section {
    margin-top: 0 !important;
}

/* Remove unwanted top shadow from Services / Mastering if inherited */
html body .cd-services-premium-section::before,
html body .cd-services-section::before,
html body .cd-service-section::before,
html body .cd-mastering-premium-section::before,
html body .cd-mastering-section-final::before,
html body .cd-mastering-section::before {
    box-shadow: none !important;
    filter: none !important;
}

/* Keep white sections clean without top dark fade */
html body .cd-services-premium-section,
html body .cd-services-section,
html body .cd-service-section,
html body .cd-mastering-premium-section,
html body .cd-mastering-section-final,
html body .cd-mastering-section {
    background-color: #ffffff !important;
}