/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a3a5f;
    --secondary-color: #2a5a8c;
    --accent-color: #e6a23c;
    --accent-secondary: #16a34a;
    --premium-blue: #1e88e5;
    --premium-green: #43a047;
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    --text-color: #333;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}
.language-dropdown { display: none; }
.language-dropdown.open { display: block; }
/* ===== Base Reset & Typography ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

/* ===== Header & Navigation ===== */
.header {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.container.blocktop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topflexdiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footerdivs_top {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.imagetop {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.toplogo {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.imageicon {
    border-radius: 6px;
}

.header_menu {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header_menu:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

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

.topicons {
    display: flex;
    gap: 10px;
}

.topicons .image {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.topicons .image:hover {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
    z-index: 999;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* ===== Hero Section ===== */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 162, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.05) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.profit-highlight {
    background: linear-gradient(135deg, #e6a23c 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.hero-lead strong {
    color: #e6a23c;
    font-weight: 700;
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-column h4 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.benefits-column h4 i {
    color: #e6a23c;
}

.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-benefits-list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.hero-benefits-list i {
    color: #82D32B;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}


/* ===== Stats Section ===== */
.stats-section {
    padding: 5rem 0;
    background-color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(230, 162, 60, 0.3);
}

.stat-icon {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .plus {
    color: var(--accent-secondary);
    font-size: 2.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #f59e0b);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== Performance Section ===== */
.performance-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.performance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.summary-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #82D32B, #e6a23c);
    opacity: 0.7;
}

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

.summary-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.summary-card:nth-child(1) .summary-value { color: #82D32B; }
.summary-card:nth-child(2) .summary-value { color: var(--accent-color); }
.summary-card:nth-child(3) .summary-value { color: var(--premium-blue); }
.summary-card:nth-child(4) .summary-value { color: #ff4d4f; }

.summary-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.summary-note {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

.chart-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 3rem 0;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.chart-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

.chart-period {
    font-size: 0.9rem;
    color: var(--gray);
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

#performance-chart {
    margin: 20px 0;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.chart-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background-color: #82D32B;
}

.chart-note {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chart-note i {
    color: var(--accent-color);
}

.insights-panel {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    align-self: start;
}

.insights-panel h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insights-panel h4 i {
    color: var(--accent-color);
}

.insights-list {
    list-style: none;
    margin-bottom: 2rem;
}

.insights-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: #475569;
    line-height: 1.5;
}

.insights-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #82D32B;
}

.insights-cta {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}

.insights-cta p {
    margin-bottom: 15px;
    color: #475569;
    font-weight: 500;
}

.performance-disclaimer {
    margin-top: 3rem;
    padding: 20px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.performance-disclaimer p {
    margin: 0;
    color: #854d0e;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.performance-disclaimer i {
    color: var(--accent-color);
}

/* ===== Subscription Section ===== */
.subscription-section {
    padding: 6rem 0;
    background-color: white;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #82D32B, #4CAF50);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(130, 211, 43, 0.3);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.billing-option {
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s;
    font-size: 1.1rem;
}

.billing-option.active {
    color: var(--primary-color);
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 8px;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 34px;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-checkbox:checked + .toggle-label {
    background-color: var(--primary-color);
}

.toggle-checkbox:checked + .toggle-label::after {
    transform: translateX(36px);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.8rem 2.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 162, 60, 0.1);
}

.plan-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(130, 211, 43, 0.15);
    z-index: 1;
}

.plan-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #4CAF50);
    color: white;

    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(130, 211, 43, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-badge {
    background: rgba(230, 162, 60, 0.1);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-pricing {
    margin: 1.5rem 0;
}

.plan-pricing .price-monthly {
    display: block;
}

.plan-pricing .price-annual {
    display: none;
}

.plan-pricing.show-annual .price-monthly {
    display: none;
}

.plan-pricing.show-annual .price-annual {
    display: block;
}

.intro-price {
    margin-bottom: 8px;
}

.intro-price .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.intro-price .period {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
    margin-top: 5px;
    font-style: italic;
}

.annual-price .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.annual-price .period {
    font-size: 1rem;
    color: var(--gray);
    display: block;
    margin-top: 5px;
}

.regular-price {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.profit-share .price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.profit-share .price-sub {
    font-size: 1.3rem;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 600;
}

.profit-share .price-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.billing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(130, 211, 43, 0.1);
    border-radius: 6px;
    display: inline-block;
}

.savings {
    color: #82D32B;
    font-weight: 700;
    margin-top: 8px;
    font-size: 1rem;
    background: rgba(130, 211, 43, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.plan-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    min-height: 3rem;
}

.plan-features {
    list-style: none;
    margin: 2.5rem 0 3rem;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1rem;
}

.feature-included i {
    color: #82D32B;
}

.feature-excluded {
    color: #999;
    opacity: 0.7;
}

.feature-excluded i {
    color: #ff4d4f;
}

.plan-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.plan-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.plan-note {
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    border: 1px solid #e9ecef;
}

.plan-note i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* ===== Software Section ===== */
.software-section {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
}

.software-section .section-title h2 {
    color: white;
}

.software-section .section-title h2::after {
    background: linear-gradient(to right, var(--accent-color), #f59e0b);
}

.software-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.software-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
}

.tab-button.active,
.tab-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content.active {
    display: block;
}

.software-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 1rem;
    border-left: 4px solid var(--accent-color);
}

.software-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.software-card h4 i {
    font-size: 2rem;
}

.software-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.software-card .signals-list {
    margin: 2rem 0;
}

.software-card .signals-list li {
    color: rgba(255, 255, 255, 0.9);
}

.software-card .signals-list i {
    color: var(--accent-color);
}

.software-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.software-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #e6a23c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(230, 162, 60, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.software-link:hover {
    background: rgba(230, 162, 60, 0.2);
    color: #f59e0b;
    transform: translateY(-2px);
}

.software-link i {
    font-size: 0.9rem;
}



/* ===== Animations ===== */
@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.counting {
    animation: countUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 162, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 162, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 162, 60, 0);
    }
}

.primary-btn {
    animation: pulse-glow 2s infinite;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    
    .footerdivs_top > .topleftalign:last-child {
        display: none;
    }
    
    .topdivlogin {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .chart-section {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .software-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        text-align: center;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 20px;
    }
    
    .toggle-switch {
        transform: rotate(90deg);
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .chart-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .performance-summary {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .language-selector {
        position: static;
        margin-left: 0;
    }
    
    .language-dropdown {
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 200px;
        max-width: 90vw;
    }
    
    .language-selector.active .language-dropdown,
    .language-dropdown.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .current-language {
        justify-content: center;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .software-card {
        padding: 2rem;
    }
    
    .plan-card {
        padding: 25px 20px !important;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-price {
        font-size: 2.2rem;
    }
    
    .toplogo {
        font-size: 1.2rem;
    }
    
    .header_menu {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .language-selector {
        margin-left: 10px;
    }
    
    .current-language {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-lead {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .chart-container,
    .insights-panel {
        padding: 20px;
    }
    
    .summary-card {
        padding: 20px 15px;
    }
    
    .summary-value {
        font-size: 2rem;
    }
    
    .footerdivs_top {
        gap: 15px;
    }
    
    .topleftalign {
        gap: 10px;
    }
    
    .toplogo {
        font-size: 1.1rem;
    }
    
    .imageicon {
        width: 30px;
        height: 30px;
    }
    
    .hero-benefits-grid {
        gap: 1rem;
    }
    
    .benefits-column {
        padding: 1rem;
    }
    
    .benefits-column h4 {
        font-size: 1.1rem;
    }
    
    .hero-benefits-list li {
        font-size: 0.85rem;
    }
}

/* Language dropdown for mobile */
@media (max-width: 768px) {
    .language-selector {
        position: relative;
    }
    
    .language-dropdown {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        max-height: 60vh;
        overflow-y: auto;
        z-index: 1002;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .current-language .lang-name {
        display: none;
    }
    
    .language-option .lang-name {
        display: block;
    }
}

/* Ensure dropdown stays on top */
.language-selector {
    z-index: 1001;
}

/* Mobile menu language selector */
.mobile-nav .language-selector {
    margin: 20px;
    width: calc(100% - 40px);
}

.mobile-nav .current-language {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 16px;
}

.mobile-nav .language-dropdown {
    position: relative;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-nav .language-option {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .language-option .lang-name {
    color: white;
}

.mobile-nav .language-option .lang-code {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Fix for all button hover states */
.cta-button:hover {
    color: #fff !important; /* Force white text on hover */
}

.cta-button.primary-btn:hover {
    background: #007bff;
    color: #fff !important;
}

.cta-button.secondary-btn:hover {
    background: #6c757d;
    color: #fff !important;
}

.cta-button.outline-btn:hover {
    background: #007bff;
    color: #fff !important;
    border-color: #007bff;
}

/* Specific fix for the gold page buttons */
.gold-hero-buttons .cta-button:hover,
.gold-cta-buttons .cta-button:hover {
    color: #fff !important;
}

/* Fix for subscription plan buttons */
.plan-cta:hover {
    color: #fff !important;
}

/* Fix for login/signup buttons */
.login-btn:hover,
.signup-link:hover {
    color: #fff !important;
}