:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(20, 20, 20, 0.9);
    --primary-color: #FCC509;
    /* Gold */
    --secondary-color: #FF0000;
    /* Red */
    --accent-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --glass-border: 1px solid rgba(252, 197, 9, 0.2);
    --primary-grad: linear-gradient(135deg, #FCC509 0%, #ffae00 100%);
    --secondary-grad: linear-gradient(135deg, #FF0000 0%, #b30000 100%);
    --glow-shadow: 0 0 20px rgba(252, 197, 9, 0.3);

    --font-heading: 'Orbitron', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: radial-gradient(circle at 60% 20%, rgba(252, 197, 9, 0.03), transparent 50%);
    /* Text rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Button & UI Optimizations */
.btn {
    padding: 18px 45px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    /* Modern rounded look */
    /* Hardware acceleration hint */
    will-change: transform;
}

.btn-primary {
    background: var(--primary-grad);
    color: #000;
    box-shadow: 0 10px 25px rgba(252, 197, 9, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(252, 197, 9, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Improved Card Buttons */
.btn-card {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: var(--font-heading);
    /* Improve tap targets on mobile */
    min-height: 55px;
}

.btn-card:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.popular .btn-card {
    background: var(--primary-grad);
    color: #000;
    border: none;
    box-shadow: 0 10px 25px rgba(252, 197, 9, 0.3);
}

.popular .btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(252, 197, 9, 0.5);
}

.best-value .btn-card {
    background: var(--secondary-grad);
    border: none;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.best-value .btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.5);
}

/* Optimization: Reduce complex shadows on scroll-heavy elements */
.pricing-card {
    /* ... existing props ... */
    will-change: transform;
    /* Hint for smoother hover */
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    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);
    background-size: 40px 40px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.gradient-text {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(252, 197, 9, 0.5);
}

.text-red {
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    padding: 30px;
    border-bottom: 2px solid var(--primary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-nav {
    padding: 8px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background: rgba(252, 197, 9, 0.1);
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: #000 !important;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    min-height: auto;
    padding-bottom: 80px;
    background: radial-gradient(circle at top center, rgba(252, 197, 9, 0.08), transparent 70%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge-glitch {
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    border: none;
    padding: 0;
}

.hero p strong {
    color: #fff;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.btn i {
    margin-left: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(252, 197, 9, 0.6);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 40px rgba(252, 197, 9, 0.8);
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Trust Badges - Horizontal scrolling on mobile */
.trust-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
}

.badge-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.badge-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.hero-visual {
    width: 100%;
    margin-top: 50px;
    display: none;
    /* Hidden for cleaner look as client area */
}

.floating-chart {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #050505;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(252, 197, 9, 0.05), transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    background: radial-gradient(circle, rgba(252, 197, 9, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header h2 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    color: #fff;
    font-family: var(--font-heading);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.currency-dropdown {
    background: #111;
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: var(--font-tech);
    font-size: 14px;
    outline: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0 10px rgba(252, 197, 9, 0.2);
}

.connection-selector-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 90px;
    position: sticky;
    top: 90px;
    z-index: 800;
}

.connection-selector {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px;
    border-radius: 60px;
    display: flex;
    gap: 10px;
    border: 1px solid rgba(252, 197, 9, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
    justify-content: center;
}

.conn-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 12px 25px;
    color: #888;
    font-family: var(--font-heading);
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    letter-spacing: 1px;
}

.conn-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.conn-btn.active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(252, 197, 9, 0.5);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.6), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(252, 197, 9, 0.15);
}

/* Popular Card Styling */
.pricing-card.popular {
    background: linear-gradient(160deg, rgba(40, 40, 40, 0.8), rgba(10, 10, 10, 0.9));
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(252, 197, 9, 0.1);
    z-index: 3;
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
}

.pricing-card.best-value {
    border-color: var(--secondary-color);
}

.pricing-card.best-value:hover {
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
}

/* Card Header */
.card-header {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.plan-duration {
    font-family: var(--font-tech);
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(252, 197, 9, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(252, 197, 9, 0.3);
    box-shadow: 0 0 15px rgba(252, 197, 9, 0.1);
}

.plan-title {
    font-size: 36px;
    margin: 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.price-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 25px;
    position: relative;
    display: inline-flex;
}

.currency {
    font-size: 28px;
    margin-top: 8px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 4px;
}

.price-value {
    font-size: 64px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Card Body */
.card-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 500;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.btn-card {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-card:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.popular .btn-card {
    background: var(--primary-color);
    color: #000;
    border: none;
    box-shadow: 0 10px 30px rgba(252, 197, 9, 0.3);
}

.popular .btn-card:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(252, 197, 9, 0.4);
}

.best-value .btn-card {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.best-value .btn-card:hover {
    background: #ff3333;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.popular-tag {
    background: var(--primary-color);
    padding: 8px 35px;
    font-size: 11px;
    top: 25px;
    right: -30px;
}

/* Manual Renewal & Support UI */
.renewal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 13px;
    color: #00ff00;
    font-weight: 600;
    border: 1px dashed rgba(0, 255, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.renewal-badge i {
    font-size: 14px;
}

/* Floating WhatsApp Support Widget */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px 10px 10px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.support-widget:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #25D366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

.support-avatar-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.support-avatar {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    position: relative;
    z-index: 2;
}

.online-pulse {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border: 2px solid #111;
    border-radius: 50%;
    z-index: 3;
}

.online-pulse::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #00ff00;
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.support-text {
    line-height: 1.2;
}

.support-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: #fff;
    font-weight: 800;
}

.support-status {
    display: block;
    font-size: 11px;
    color: #25D366;
    font-weight: 700;
    text-transform: uppercase;
}

/* Modal Renewal Reassurance */
.modal-renewal-note {
    text-align: center;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #00ff00;
    font-weight: 600;
}


/* SEO Content Section */
.seo-section {
    padding: 80px 0;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-block h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.seo-block p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Payment Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    width: 95%;
    max-width: 500px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(252, 197, 9, 0.2);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    /* Allow scrolling for content */
    -webkit-overflow-scrolling: touch;
}

/* Iframe Container - Responsive */
.iframe-container {
    height: 100%;
    min-height: 500px;
    /* Ensure enough space for gateway */
    width: 100%;
    border: none;
    display: none;
    background: #fff;
    /* White bg for gateway clarity */
    flex-grow: 1;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    background: var(--primary-color);
    color: #000;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 20px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* WhatsApp Activation Box Styles */
.wa-confirm-container {
    text-align: center;
    padding: 20px;
    background: #111;
    border-top: 2px solid var(--primary-color);
}

.wa-note {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #00ff00;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
}

.wa-instruction {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-whatsapp {
    display: block;
    width: 100%;
    padding: 18px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.modal-renewal-note {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #4ade80;
    /* Trusted green color */
    line-height: 1.4;
    text-align: left;
}

.modal-renewal-note i {
    margin-right: 8px;
    color: #4ade80;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
    color: #ddd;
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
}

.guarantee-box {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 25px;
}

.guarantee-box i {
    color: #00ff00;
    margin-right: 5px;
}

.btn-checkout {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-heading);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.iframe-container {
    height: 600px;
    width: 100%;
    border: none;
    display: none;
    /* Hidden strictly by default, shown if we use iframe mode */
}

/* Footer */
.footer {
    padding: 50px 0;
    background: #000;
    border-top: 1px solid #222;
    text-align: center;
}

.footer img {
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

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

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero p {
        border: none;
        padding: 0;
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
    }

    .section-header h2 {
        font-size: 28px;
    }

    /* Mobile Transparent Support Widget */
    .support-widget {
        bottom: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }

    .support-text {
        display: none;
    }

    .support-avatar-container {
        margin: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .support-avatar {
        width: 100%;
        height: 100%;
        font-size: 28px;
        background: transparent;
        color: #25D366;
    }

    .online-pulse {
        right: 8px;
        bottom: 8px;
    }

    /* Connection Buttons Wrap */
    .connection-selector {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
        border-radius: 20px;
    }

    .conn-btn {
        flex: 1 1 40%;
        font-size: 13px;
        padding: 10px;
    }
}

/* Additional Mobile Modal Styles Fix */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        border: none;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        padding: 20px;
        flex-grow: 1;
        overflow-y: auto;
    }

    .iframe-container {
        height: 100%;
        min-height: 100%;
        /* Fill screen */
        border: none;
        display: none;
        /* Managed by JS */
        flex-grow: 1;
        background: #fff;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        z-index: 200;
        /* Ensure on top of iframe */
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        backdrop-filter: blur(5px);
    }
}