/*
Style Table of Contents:
1. CSS GLOBAL / SHARED
2. HERO SECTION
3. PRICING GENERAL
4. PRICING SAPHIRE
5. PRICING TITANIUM
6. PLATFORM & FEATURES
7. PRIORITY & INSTALL SCRIPT
8. PROMO RENEWAL BANNER
9. RESPONSIVE (MEDIA QUERIES)
*/


/* =========================================
1. CSS GLOBAL / SHARED
========================================= */
:root {
    --primary-color: #1a3e8c;
    --primary-light: #254db3;
    --accent-color: #ff6600;
    --accent-hover: #e65c00;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --titanium: #e2e8f0;
    --titanium-dark: #334155;
    --titanium-grad: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--accent-color);
}

.d-1 {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 10%;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.d-1 i {
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

.d-2 {
    width: 40px;
    height: 40px;
    top: 380px;
    left: 75px;
    animation-delay: 2s;
}

.d-2 i {
    font-size: 1.2rem;
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

.d-4 {
    width: 45px;
    height: 45px;
    top: 20px;
    left: 75px;
    animation-delay: 1s;
}

.d-4 i {
    font-size: 1rem;
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

.features-bar {
    background: #f8fafc;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.features-bar-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.features-bar-grid i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.features-bar-grid p {
    font-weight: 600;
    font-size: 0.9rem;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.pricing-wrapper {
    position: relative;
    z-index: 10;
}

.sub-lead {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0;
    display: block;
}

.f-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.f-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.circle-top-right {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
}

.price-strikethrough {
    display: block;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-main {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.price-main .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

.bg-white {
    background-color: var(--white);
}

.section-title-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title-left p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.badge {
    background: rgba(255, 102, 0, 0.2) !important;
    color: var(--accent-color) !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
    display: inline-block !important;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    line-height: 1.2;
}

.btn-outline-3 {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 30px;
    text-transform: uppercase;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-3:hover {
    color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);

}

.features-bar-grid.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =========================================
2. HERO SECTION
========================================= */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hs-1 {
    width: 300px;
    height: 300px;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 5%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-3 {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 62%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-4 {
    width: 150px;
    height: 150px;
    bottom: 30px;
    left: 10%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-signals {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-signals i {
    color: var(--accent-color);
}

.hero-image {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.deco-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: float-icon 6s ease-in-out infinite;
    z-index: 3;
    transition: all 0.3s ease;
}

.deco-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.deco-icon i {
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 5px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-image {
    position: relative;
}

/* =========================================
3. PRICING GENERAL
========================================= */
.badge-yellow {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.circle-deco {
    position: absolute;
    background: radial-gradient(circle at center, rgba(255, 214, 186, 0.8) 0%, rgba(255, 214, 186, 0.2) 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

.guarantee-text {
    position: relative;
    z-index: 5;
}

.badge-discount {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.btn-orange {
    background: var(--accent-color);
    color: white;
    text-transform: none;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-orange:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
    color: white;
}

.guarantee-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-card-split {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card-split:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.pricing-left {
    padding: 50px 50px 60px 50px;
    display: flex;
    flex-direction: column;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-left .description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.pricing-left h2,
.pricing-header h3,
.amount,
.badge-yellow,
.badge-discount,
.btn-orange {
    font-family: 'Outfit', sans-serif;
}

.pricing-right {
    background: #fff0e6;
    padding: 50px 60px 60px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-right>:not(.circle-deco) {
    position: relative;
    z-index: 2;
}

.price-display {
    margin-bottom: 30px;
}

.pricing-right .period {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 5px;
    opacity: 0.8;
    font-weight: 500;
}

.specs-list {
    list-style: none;
    margin-bottom: 30px;
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.specs-list li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.pricing-card-split {
    position: relative;
}

/* =========================================
4. PRICING TITANIUM
========================================= */
.pricing-card-split.reverse-card {
    grid-template-columns: 1fr 1.6fr;
}

.btn-titanium {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 50%, #94a3b8 100%);
    color: #0f172a !important;
    border: 1px solid #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-titanium:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bg-titanium {
    background: var(--titanium-grad) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.bg-titanium .badge-discount {
    background: var(--titanium-dark) !important;
    box-shadow: 0 4px 10px rgba(51, 65, 85, 0.2);
}

.bg-titanium .btn-orange {
    background: var(--titanium-dark) !important;
    border-color: var(--titanium-dark) !important;
    box-shadow: 0 10px 20px rgba(51, 65, 85, 0.15);
}

.bg-titanium .btn-orange:hover {
    background: #0f172a !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(51, 65, 85, 0.25);
}

/* =========================================
5. PLATFORM & FEATURES
========================================= */
.pc-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, rgba(255, 100, 0, 0.05) 70%, transparent 100%);
    top: -50px;
    left: 155px;
    filter: blur(10px);
}

.pc-2 {
    width: 175px;
    height: 175px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, rgba(255, 80, 0, 0.03) 80%, transparent 100%);
    bottom: 200px;
    right: 100px;
    filter: blur(15px);
}

.pc-3 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.2), transparent 80%);
    top: calc(10% - 190px);
    right: 5%;
    filter: blur(5px);
}

.pc-4 {
    width: 75px;
    height: 75px;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.15), transparent 70%);
    bottom: 5%;
    left: calc(10% + 1000px);
    filter: blur(8px);
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.icon-box-soft {
    flex-shrink: 0;
}

.icon-box-soft {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.f-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.f-item:hover .icon-box-soft {
    background: var(--accent-color);
    color: white;
    transform: rotate(-10deg) scale(1.1);
}

/* =========================================
6. PRIORITY & INSTALL SCRIPT
========================================= */
.priority-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.priority-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.priority-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), #ff9a3c);
    border-radius: 4px 0 0 4px;
}

.priority-item:hover {
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.2);
}

.priority-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    min-width: 56px;
    flex-shrink: 0;
}

.priority-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.priority-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
7. PROMO RENEWAL BANNER
========================================= */
.banner-image-wrapper {
    display: block;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 62, 140, 0.15);
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: transparent;
}

.banner-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 62, 140, 0.25);
}

.renewal-promo-col {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0e6 0%, #ffdecc 100%);
    text-align: center;
    height: 100%;
}

.renewal-promo-text {
    margin-top: 30px;
    max-width: 400px;
}

.renewal-promo-text h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* =========================================
8. RESPONSIVE (MEDIA QUERIES)
========================================= */
@media (max-width: 1024px) {
    .bg-circle {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-content {
        order: 2;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
        text-align: left;
    }

    .hero-content p {
        text-align: left;
    }

    .hero-btns {
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
    }

    .hero-btns .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .trust-signals {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-top: 25px;
    }

    .pricing-card-split,
    .pricing-card-split.reverse-card {
        margin-bottom: 35px;
        border-radius: 16px;
    }

    .bg-titanium {
        border-left: none !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-left {
        padding: 35px 20px;
        text-align: left;
    }

    .pricing-left h2 {
        text-align: left;
        font-size: 1.7rem;
    }

    .pricing-left .description {
        text-align: left;
    }

    .pricing-right {
        padding: 45px 20px;
        text-align: left;
    }

    .price-main {
        justify-content: flex-start;
    }

    .price-strikethrough {
        text-align: left;
    }

    .badge-container {
        justify-content: flex-start;
        text-align: left;
    }

    .sub-lead {
        text-align: left;
    }

    .features-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .hero-shape {
        display: none;
    }

    .pricing-card-split,
    .pricing-card-split.reverse-card {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .pricing-left,
    .pricing-right {
        width: 100% !important;
        padding: 40px 20px !important;
    }

    .pricing-right {
        order: 1 !important;
    }

    .pricing-left {
        order: 2 !important;
    }

    .badge-container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .priority-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .priority-item {
        padding: 20px 16px 20px 22px;
    }

    .priority-content h4 {
        font-size: 1rem;
    }

    .priority-content p {
        font-size: 0.9rem;
    }

    .section-title-left {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title-left h2 {
        font-size: 2rem;
    }

    .hero-image {
        margin-top: 30px;
    }

    .section-title-left p {
        font-size: 1rem;
    }

    .priority-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
        width: 100% !important;
    }

    .priority-list {
        gap: 30px;
    }

    .priority-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .priority-number {
        min-width: unset;
        font-size: 3rem;
    }

    .features-bar-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px 0 !important;
    }

    .priority-container {
        flex-direction: column !important;
    }

    .icon-box-soft {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
    }

    .features-grid {
        gap: 16px !important;
    }

    .f-item {
        gap: 10px !important;
    }

    .d-2 {
        left: 30px !important;
        top: 275px !important;
    }

    .d-4 {
        left: 30px !important;
    }

    .btn-outline-3 {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
}

@media (max-width: 639px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 479px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .trust-signals {
        flex-direction: column;
        gap: 10px;
    }
}