/* CSS Design System & Variables */
:root {
    --bg-base: #05050b;
    --bg-surface: #0c0c16;
    --bg-card: rgba(15, 15, 27, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.4);

    --color-primary: #8b5cf6;
    /* Violet */
    --color-secondary: #06b6d4;
    /* Cyan */
    --color-accent: #f97316;
    /* Amber/Orange */

    --color-text-primary: #f4f4f5;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --glow-primary: rgba(139, 92, 246, 0.25);
    --glow-secondary: rgba(6, 147, 227, 0.25);
    --glow-card-popular: 0 10px 30px -5px rgba(139, 92, 246, 0.2), 0 0 15px 1px rgba(6, 147, 227, 0.15);
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Base Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* Utility Layouts */
section {
    padding: 100px 5% 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-2px);
}

/* Sticky Header styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    transition: all 0.4s ease;
}

.site-header.sticky {
    padding: 12px 5%;
    background: rgba(5, 5, 11, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ffffff, var(--color-text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    filter: brightness(1.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.device-mockup {
    position: relative;
    max-width: 100%;
    border-radius: 12px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
}

.mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Background Glowing Spheres */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.45;
}

.sphere-primary {
    top: 10%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: var(--color-primary);
}

.sphere-secondary {
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
}

/* Plans Section */
.plans-section {
    position: relative;
    z-index: 10;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
}

.popular-card {
    border-color: var(--color-primary);
    box-shadow: var(--glow-card-popular);
    transform: scale(1.03);
}

.popular-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px -5px rgba(139, 92, 246, 0.25), 0 0 25px 2px rgba(6, 147, 227, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent), #f97316);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.plan-name {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.plan-subtext {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

.plan-price-group {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
}

.plan-period {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-left: 5px;
}

.plan-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--color-text-primary);
}

.check-icon {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.plan-action {
    margin-top: auto;
}

.btn-card-action {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-card {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--color-text-primary);
}

.btn-outline-card:hover {
    border-color: var(--color-secondary);
    background: rgba(6, 182, 212, 0.05);
}

/* Services / Showcase Section */
.services-section {
    z-index: 10;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Browser Showcase Frame styling */
.showcase-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.showcase-container:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.1);
}

.browser-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.browser-header .dot.red {
    background-color: #ef4444;
}

.browser-header .dot.yellow {
    background-color: #eab308;
}

.browser-header .dot.green {
    background-color: #22c55e;
}

.browser-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    margin-left: 15px;
    letter-spacing: 0.05em;
}

.showcase-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.showcase-body.no-header {
    background: transparent;
}

.showcase-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.showcase-container:hover .showcase-img {
    transform: scale(1.01);
}

.showcase-container-mini {
    background: transparent;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

/* Scroll reveal animations class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Contact Form controls */
.contact-form-title,
.info-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-form-subtitle,
.info-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.02);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.btn-submit {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 10px;
}

/* Company Information section */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-item-box:hover {
    border-color: var(--color-secondary);
    background: rgba(6, 182, 212, 0.02);
    transform: translateX(5px);
}

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-text-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.hover-glow:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

/* Footer Section */
.site-footer {
    background: #030308;
    border-top: 1px solid var(--border-color);
    padding: 80px 5% 40px 5%;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-text-secondary);
}

.contact-item i {
    margin-top: 4px;
    width: 16px;
}

.color-accent {
    color: var(--color-accent);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-links-list a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.newsletter-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.form-group-newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 4px;
    overflow: hidden;
}

.form-group-newsletter:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    color: #ffffff;
    padding: 0 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Success Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: -400px;
    background: #0f172a;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: 16px 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.25);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 360px;
}

.toast.show {
    right: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    color: #22c55e;
    font-size: 1.5rem;
}

.toast-message {
    display: flex;
    flex-direction: column;
}

.toast-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.toast-body {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin-top: 2px;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.toast-close:hover {
    color: #ffffff;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .popular-card {
        transform: none;
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .popular-card:hover {
        transform: translateY(-8px);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }

    .col-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 6% 60px 6%;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(5, 5, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.4s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .header-actions .phone-btn span {
        display: none;
    }

    .header-actions .phone-btn {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .popular-card {
        grid-column: span 1;
        transform: none;
        max-width: none;
        margin: 0;
    }

    .popular-card:hover {
        transform: translateY(-8px);
    }

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

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

    .col-newsletter {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* ==========================================
   Subscribe Promo Page & Popup Modal Styles
   ========================================== */

.subscribe-page {
    padding-top: 150px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.08), transparent 70%);
}

.subscribe-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.promo-hero {
    margin-bottom: 50px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 40%, var(--color-text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Bundle Showcase Cards Grid */
.bundle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.bundle-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.border-paramount {
    border-left: 4px solid #0064ff;
}

.border-peacock {
    border-left: 4px solid #00c2cb;
}

.brand-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.bg-paramount {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(0, 100, 255, 0.05));
    border-bottom: 1px solid rgba(0, 100, 255, 0.15);
}

.bg-peacock {
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.2), rgba(0, 194, 203, 0.05));
    border-bottom: 1px solid rgba(0, 194, 203, 0.15);
}

.brand-icon {
    font-size: 1.8rem;
}

.text-paramount {
    color: #0064ff;
}

.text-peacock {
    color: #00c2cb;
}

.brand-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.bundle-body {
    padding: 30px;
}

.bundle-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.bundle-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.cta-center {
    margin-bottom: 40px;
}

.btn-reopen {
    padding: 15px 35px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

/* Promotional Modal Overlay */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 7, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.promo-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Promo Modal Container */
.promo-modal {
    background: #09090f;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(#09090f, #09090f), linear-gradient(135deg, #00a8e1, #9933ff, #FF0000, #fec629, #22c55e);
    border-radius: 28px;
    width: 90%;
    max-width: 500px;
    padding: 45px 35px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(254, 198, 41, 0.15),
        0 0 4px rgba(6, 182, 212, 0.2);
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-modal .modal-close {
    color: #a1a1aa;
}

.promo-modal .modal-close:hover {
    color: #fec629;
}

.promo-modal .modal-title {
    color: #ffffff;
}

.promo-modal .modal-subtext {
    color: #a1a1aa;
}

.promo-modal .offer-box {
    background: rgba(254, 198, 41, 0.02);
    border: 1px solid rgba(254, 198, 41, 0.15);
}

.promo-modal .offer-desc {
    color: #e4e4e7;
}

.promo-modal .modal-footer {
    color: #71717a;
}

.promo-modal .btn-modal-call {
    background: #fec629;
    color: #000000;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(254, 198, 41, 0.35);
}

.promo-modal .btn-modal-call:hover {
    background: #ffd800;
    color: #000000;
    box-shadow: 0 10px 25px rgba(254, 198, 41, 0.55);
}

.promo-modal .btn-modal-call i {
    color: #000000;
}

.promo-modal-overlay.show .promo-modal {
    transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 22px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
}

/* Modal Inner Parts */
.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-paramount {
    background: radial-gradient(circle, #0084ff, #0033bb);
    box-shadow: 0 5px 15px rgba(0, 100, 255, 0.3);
}

.logo-peacock {
    background: radial-gradient(circle, #00cbd4, #007780);
    box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.logo-plus {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent), #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtext {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-bottom: 25px;
}

.offer-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.offer-desc {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.countdown-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Call Button styling */
.btn-modal-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-modal-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.45);
    filter: brightness(1.08);
}

.btn-modal-call i {
    font-size: 1.8rem;
    animation: phone-shake 1.5s infinite;
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.call-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.modal-footer {
    margin-top: 25px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.modal-footer i {
    color: var(--color-secondary);
    margin-right: 4px;
}

/* Phone Shake animation */
@keyframes phone-shake {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }

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

.brand-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.brand-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bundle-card:hover .brand-card-img {
    transform: scale(1.05);
}

.peacock-banner-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.peacock-banner-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 168, 225, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.peacock-banner-img:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 168, 225, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .promo-title {
        font-size: 2.2rem;
    }

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

    .promo-hero {
        margin-bottom: 30px;
    }

    .promo-badge {
        font-size: 0.75rem;
    }

    .promo-subtitle {
        font-size: 1rem;
    }

    .promo-modal {
        padding: 35px 24px;
    }

    .modal-title {
        font-size: 1.8rem;
    }
}