<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.nav-brand i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.nav-brand span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.nav-brand span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-brand:hover span::after {
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;');
    opacity: 1;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    33% {
        transform: translateY(-10px) scale(1.02);
    }
    66% {
        transform: translateY(10px) scale(0.98);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
    color: #f093fb;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Visual - SEO Dashboard */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-dashboard {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.metric-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ensure values on the right side of the banner display as white */
.seo-dashboard .metric-value {
    color: #ffffff !important;
}

.dashboard-metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF; /* White Color */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.progress-track {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, #4ade80 0%, #10b981 100%);
    height: 100%;
    border-radius: 4px;
    animation: progressGrow 2s ease-out;
}

@keyframes progressGrow {
    from { width: 0%; }
    to { width: 85%; }
}

.progress-text {
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Premium Statistics */
.premium-stats {
    padding: 8rem 0;
    background: 
        linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%),
        radial-gradient(circle at 25% 75%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.premium-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='50' cy='50' r='1.5'/%3E%3Ccircle cx='25' cy='25' r='1'/%3E%3Ccircle cx='75' cy='75' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 30s ease-in-out infinite;
}

.premium-stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, transparent 50%, rgba(46, 204, 113, 0.03) 100%);
    animation: gradientFlow 20s ease-in-out infinite alternate;
}

@keyframes gradientFlow {
    0% { opacity: 0.5; transform: translateX(-10px); }
    100% { opacity: 1; transform: translateX(10px); }
}

.stats-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card.featured {
    transform: scale(1.05);
    background: 
        linear-gradient(145deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.stat-card.featured::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-20px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(102, 126, 234, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 30px rgba(102, 126, 234, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotateY(15deg);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #f1f5f9;
    transform: translateY(-3px);
    letter-spacing: 1.5px;
}

.stat-description {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-description {
    color: #cbd5e1;
    opacity: 1;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    pointer-events: none;
}

.stat-card:hover .stat-glow {
    width: 200px;
    height: 200px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.trust-badge i {
    font-size: 1.5rem;
    color: #3498db;
}

/* Why Us Section */
.why-us {
    padding: 2rem 0 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.2rem;
}

/* Enhanced Typography */
.section-title-bold {
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
}

.section-subtitle-bold {
    font-weight: 600 !important;
    font-size: 1.3rem !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin-top: 0.5rem !important;
}

.cta-title-bold {
    font-weight: 800 !important;
    font-size: 3.2rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle-bold {
    font-weight: 600 !important;
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
    opacity: 0.95 !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.benefit:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    box-shadow: 
        0 15px 30px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.benefit:hover .benefit-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit p {
    color: #64748b;
    line-height: 1.6;
}

.benefit-title {
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-weight: 500 !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    font-size: 1.05rem !important;
}

/* Packages Section */
.packages {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.pbn-packages-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pbn-option-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pbn-option-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.3);
}

.pbn-option-card.featured {
    border: 2px solid #f093fb;
    transform: scale(1.08);
    box-shadow: 
        0 15px 40px rgba(240, 147, 251, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 1);
}

.pbn-option-card.featured:hover {
    transform: translateY(-15px) scale(1.08);
}

.pbn-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.popular-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.pbn-header-main {
    text-align: center;
    margin-bottom: 2rem;
}

.pbn-header-main h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.pbn-price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.pbn-price-main span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pbn-subtitle {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

.pbn-features-main {
    margin-bottom: 2rem;
}

/* Additional Volume Packages */
.additional-packages {
    margin-top: 4rem;
    text-align: center;
}

.additional-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.volume-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.volume-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.volume-option:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.volume-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.volume-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.volume-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-card.premium {
    border: 2px solid #f093fb;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.premium-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
}

.package-subtitle {
    color: #64748b;
    margin-bottom: 0;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.package-guarantee {
    text-align: center;
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* PBN Packages */
.pbn-packages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pbn-option {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pbn-option.popular {
    border-color: #f093fb;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
}

.pbn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pbn-header h4 {
    color: #1e293b;
    margin: 0;
}

.pbn-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.pbn-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pbn-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pbn-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.pbn-features li::before {
    content: 'âœ“';
    color: #10b981;
    font-weight: bold;
}



/* Trust Signals */
.trust-signals {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.trust-signals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="trust-pattern" width="80" height="80" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="40" cy="40" r="1.5" fill="rgba(102,126,234,0.03)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23trust-pattern)"/&gt;&lt;/svg&gt;');
}

.trust-signals .container {
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.trust-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(102, 126, 234, 0.12),
        inset 0 2px 4px rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.3);
}

.trust-item:hover::before {
    transform: scaleY(1);
}

.trust-icon {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.trust-icon i {
    font-size: 2rem;
    color: white;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.trust-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.trust-content strong {
    color: #667eea;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1em;
}

.trust-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.proof-tag {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    color: #0277bd;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(2, 119, 189, 0.1);
}

/* Comparison Section */
.comparison-section {
    margin-top: 80px;
    padding: 60px 0;
    position: relative;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.comparison-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.comparison-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table-container {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table thead th {
    background: rgba(52, 152, 219, 0.2);
    color: #ffffff;
    font-weight: 600;
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.feature-column {
    width: 30%;
}

.comparison-table th.competitor-column {
    width: 35%;
    background: rgba(231, 76, 60, 0.1);
}

.comparison-table th.our-column {
    width: 35%;
    background: rgba(46, 204, 113, 0.1);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #ffffff;
}

.feature-name i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 10px;
    font-size: 1.2rem;
    color: #3498db;
}

.competitor-value, .our-value {
    display: flex;
    align-items: center;
    gap: 12px;
}

.competitor-value.negative {
    color: rgba(255, 255, 255, 0.7);
}

.competitor-value.negative i {
    color: #e74c3c;
    font-size: 1.1rem;
}

.our-value.positive {
    color: #ffffff;
    font-weight: 500;
}

.our-value.positive i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.comparison-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    padding: 30px 40px;
    margin: 0 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 15px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.highlight-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Competitor Warning Section */
.competitor-warning {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0c0f1a 0%, #1a1f35 30%, #2d1b4e 70%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.competitor-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(239, 68, 68, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(245, 101, 101, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 50% 40%, rgba(220, 38, 38, 0.08) 0%, transparent 65%),
        radial-gradient(circle at 30% 80%, rgba(185, 28, 28, 0.06) 0%, transparent 50%);
    animation: warningPulse 4s ease-in-out infinite;
}

.competitor-warning::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(239, 68, 68, 0.03) 50%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(220, 38, 38, 0.02) 50%, transparent 100%);
    animation: warningShift 8s ease-in-out infinite alternate;
}

@keyframes warningPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.01);
    }
}

@keyframes warningShift {
    0% { 
        transform: translateX(-1%) rotate(-0.5deg);
        opacity: 0.4;
    }
    100% { 
        transform: translateX(1%) rotate(0.5deg);
        opacity: 0.2;
    }
}

.warning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.warning-visual {
    position: relative;
}

.competitor-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.competitor-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
}

.dashboard-title i {
    font-size: 1.5rem;
    animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
    0%, 50% { opacity: 1; }
    25% { opacity: 0.5; }
}

.competitor-activity {
    margin-bottom: 2rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.activity-item.urgent {
    border-left-color: #ef4444;
    animation: urgentPulse 3s ease-in-out infinite;
}

.activity-item.warning {
    border-left-color: #f59e0b;
}

.activity-item.alert {
    border-left-color: #f97316;
}

@keyframes urgentPulse {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.03);
        box-shadow: 0 0 0 rgba(239, 68, 68, 0);
    }
    50% { 
        background: rgba(239, 68, 68, 0.1);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    }
}

.activity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #ef4444;
    font-size: 1.1rem;
}

.activity-info {
    flex: 1;
}

.activity-text {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.alert {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.competitor-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.metric-card.negative .metric-value {
    color: #ef4444;
}

.metric-card.competitor .metric-value {
    color: #f59e0b;
}

.metric-card.revenue-loss .metric-value {
    color: #dc2626;
}

.metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.down {
    color: #ef4444;
}

.metric-trend.up {
    color: #f59e0b;
}

.warning-text {
    color: white;
    max-width: 100%;
}

.warning-header {
    margin-bottom: 1.75rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    animation: urgencyFloat 2s ease-in-out infinite;
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 2px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(220, 38, 38, 0.8);
}

.urgency-badge i {
    font-size: 1rem;
    animation: sirenSpin 1.5s ease-in-out infinite;
}

@keyframes sirenSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(8deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-8deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes urgencyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.warning-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #ef4444 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.warning-description {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 95%;
}

.threat-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.threat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
}

.threat-item:hover {
    background: rgba(239, 68, 68, 0.12);
    transform: translateX(3px);
}

.threat-item i {
    color: #ef4444;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    margin-top: 0.15rem;
}

.threat-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Market Analysis Panel */
.market-analysis {
    margin: 1.75rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

@media (max-width: 768px) {
    .threat-indicators {
        grid-template-columns: 1fr;
    }
    
    .warning-title {
        font-size: 2.2rem;
    }
    
    .warning-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

/* Competitive Intelligence Panel */
.competitive-intel {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.intel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intel-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.intel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.intel-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
}

.intel-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.9rem;
}

.intel-info {
    flex: 1;
}

.intel-title {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.intel-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.intel-status {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

.intel-status.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.intel-status.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.warning-text {
    color: white;
}

.warning-header {
    margin-bottom: 2rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    animation: urgencyFloat 2s ease-in-out infinite;
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 2px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(220, 38, 38, 0.8);
}

.urgency-badge i {
    font-size: 1rem;
    animation: sirenSpin 1.5s ease-in-out infinite;
}

@keyframes sirenSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(8deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-8deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes urgencyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.warning-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ef4444 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warning-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.threat-indicators {
    margin-bottom: 3rem;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.threat-item:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateX(5px);
}

.threat-item i {
    color: #ef4444;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.threat-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Market Analysis Panel */
.market-analysis {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.analysis-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.analysis-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.analysis-card.declining {
    border-left: 4px solid #ef4444;
}

.analysis-card.warning {
    border-left: 4px solid #f59e0b;
}

.analysis-card.critical {
    border-left: 4px solid #dc2626;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
}

.analysis-card.declining .card-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.analysis-card.warning .card-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.analysis-card.critical .card-icon {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.card-content {
    flex: 1;
}

.card-value {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.analysis-card.declining .card-value {
    color: #ef4444;
}

.analysis-card.warning .card-value {
    color: #f59e0b;
}

.analysis-card.critical .card-value {
    color: #dc2626;
}

.card-label {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.card-timeframe {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* Gap Analysis */
.gap-analysis {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.gap-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gap-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gap-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gap-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.gap-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.your-score, .competitor-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.your-score span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    min-width: 90px;
}

.competitor-score span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    min-width: 120px;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.score-bar.competitor .score-fill {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.gap-deficit {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.action-urgency {
    margin-bottom: 3rem;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-bottom: 2rem;
}

.timer-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.timer-text strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.timer-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.action-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(34, 197, 94, 0.15);
    transform: translateX(5px);
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.warning-cta {
    margin-top: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-urgent {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.btn-urgent:hover::before {
    left: 100%;
}

.btn-urgent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.5);
}

.cta-guarantees {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.guarantee-item i {
    color: #22c55e;
    font-size: 1rem;
}



.guarantee-icon i {
    font-size: 2rem;
    color: white;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.guarantee-cta {
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="testimonial-pattern" width="50" height="50" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="2" fill="rgba(102,126,234,0.05)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23testimonial-pattern)"/&gt;&lt;/svg&gt;');
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial {
    background: white;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 
        0 8px 30px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.12),
        inset 0 2px 4px rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial p {
    color: #475569;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-info h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info span {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* FAQ Section - Enhanced Design */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="faq-pattern" width="40" height="40" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.05)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23faq-pattern)"/&gt;&lt;/svg&gt;');
    opacity: 0.5;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq .section-header {
    text-align: center;
    position: relative;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.faq .section-title-bold {
    color: white;
    font-weight: 800;
    font-size: 3rem;
    text-shadow: 0 2px 15px rgba(56, 189, 248, 0.6);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.faq .section-title-bold::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #7dd3fc, #38bdf8);
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(56, 189, 248, 0.7);
}

.faq .section-subtitle-bold {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 4rem;
    position: relative;
}

.faq-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-left: 0px solid rgba(56, 189, 248, 0.7);
    color: white;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0px rgba(56, 189, 248, 0);
}

.faq-question:hover::before,
.faq-item.active .faq-question::before {
    transform: scaleY(1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.7);
}

.faq-question:hover {
    color: #7dd3fc;
    padding-left: 3rem;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question {
    color: #7dd3fc;
    padding-left: 3rem;
    background: rgba(255, 255, 255, 0.07);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-question i {
    transition: all 0.3s ease;
    font-size: 1.25rem;
    color: #38bdf8;
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    position: relative;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    opacity: 1;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 1rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 0.8rem;
}

.faq-answer p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(125, 211, 252, 0.8), rgba(56, 189, 248, 0.8));
    border-radius: 2px;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Information Styles */
.contact-info {
    margin-top: 3rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.contact-title {
    text-align: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem;
    min-width: 280px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: -1;
}

.contact-item:hover::before {
    opacity: 0.1;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.3),
        0 0 40px rgba(102, 126, 234, 0.1);
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-item:hover .contact-icon::before {
    opacity: 0.6;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.contact-icon i {
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
}

/* ç¡®ä¿å›¾æ&nbsp;‡å§‹ç»ˆå¯è§ */
.contact-icon i {
    display: inline-block !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
    font-weight: 900;
}

.contact-icon i.fab {
    font-family: "Font Awesome 6 Brands", sans-serif !important;
    font-weight: 400;
}

/* å¦‚æžœFont AwesomeæœªåŠ&nbsp;è½½ï¼Œä½¿ç”¨ç³»ç»Ÿå­—ä½“æ˜¾ç¤ºå›¾æ&nbsp;‡ */
.contact-icon i::before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7), 0 0 25px rgba(255, 255, 255, 0.4);
}

.contact-item:hover .contact-icon::before {
    opacity: 0.7;
    animation: pulse-ring 1.5s infinite;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.contact-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.contact-item:hover .contact-value::after {
    width: 100%;
}

.contact-item:hover .contact-value {
    color: #f0f9ff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-description {
    color: #94a3b8;
    margin: 1.5rem 0;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-column a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-security {
    display: flex;
    justify-content: center;
}

.security-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.security-badge i {
    font-size: 1.1rem;
    color: #667eea;
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #334155;
}

.footer-copyright p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fc);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.modal-content h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}

.btn.btn-primary.btn-full {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn.btn-primary.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

.modal-content .close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.modal-content .close:hover {
    color: #1e293b;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-feature {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-weight: 700;
    }
    
    .pbn-packages-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .volume-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-title {
        font-size: 1.8rem;
    }
    
    .pbn-option-card.featured {
        transform: scale(1);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step::after {
        display: none;
    }
    


    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 1rem;
        padding: 2.5rem 1.5rem;
    }
    
    /* Competitor Warning Responsive */
    .warning-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .warning-visual {
        order: 2;
    }

    .warning-text {
        order: 1;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* New Content Responsive - 1024px */
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .threat-radar, .competitive-intel, .market-analysis, .gap-analysis {
        margin: 1.5rem 0;
        padding: 1.2rem;
    }

    .radar-display {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
        .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
        padding-right: 0;
    }

    .security-badges {
        gap: 1rem;
    }

    .security-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-brand {
        font-size: 1.5rem;
        gap: 0.5rem;
    }

    .nav-brand i {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title-bold {
        font-size: 2.2rem !important;
    }
    
    .cta-title-bold {
        font-size: 2.5rem !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-item {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .comparison-section {
        padding: 40px 0;
    }

    .comparison-title {
        font-size: 2.2rem;
    }
    
    .comparison-table-container {
        padding: 0 15px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 15px;
    }
    
    .feature-name i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .comparison-footer {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .comparison-highlight {
        flex-direction: column;
    }
    
    .highlight-text h4 {
        font-size: 1.3rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .strategy-card {
        padding: 2rem;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .pbn-strategy .section-title-bold {
        font-size: 2.8rem;
    }

    .strategy-icon {
        margin-bottom: 1.5rem;
    }

    .strategy-cta {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cta-text h3 {
        font-size: 1.6rem;
    }



    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .guarantee-banner {
        padding: 2rem;
    }

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

    .testimonial {
        padding: 2rem 1.5rem;
    }

    .testimonial::before {
        font-size: 6rem;
        top: -5px;
        left: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-title {
        font-size: 2.8rem;
    }
    
    .stats-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 3rem 1.5rem;
    }
    
    .stat-number {
        font-size: 4.5rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-item {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 1.5rem 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }

    /* Competitor Warning Mobile */
    .competitor-warning {
        padding: 4rem 0;
    }

    .warning-title {
        font-size: 2.5rem;
    }

    .warning-description {
        font-size: 1.1rem;
    }

    .competitor-dashboard {
        padding: 2rem;
    }

    .activity-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .activity-info {
        text-align: center;
    }

    .competitor-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card:last-child {
        grid-column: 1 / -1;
    }

    .urgency-timer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .threat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    /* Client Success Showcase Mobile */
    .client-success-showcase {
        padding: 80px 0;
    }

    .showcase-title {
        font-size: 2.8rem;
    }

    .showcase-subtitle {
        font-size: 1.2rem;
    }

    .success-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
        max-width: 600px;
    }

    .showcase-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }

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

    .card-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .header-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .description-content {
        padding: 1.5rem;
    }

    .description-content p {
        font-size: 0.95rem;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .guarantee-text h3 {
        font-size: 2rem;
    }

    .guarantee-text p {
        font-size: 1.1rem;
    }

    .guarantee-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
        .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        border-bottom: 1px solid #334155;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-brand {
        font-size: 1.3rem;
        gap: 0.4rem;
    }

    .nav-brand:hover {
        transform: scale(1.02);
    }

    .nav-brand i {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-title-bold {
        font-size: 1.8rem !important;
    }
    
    .cta-title-bold {
        font-size: 2rem !important;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
    }

    .strategy-card {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .pbn-strategy .section-title-bold {
        font-size: 2.2rem !important;
    }
    
    .strategy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .strategy-content h3 {
        font-size: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }

    .trust-item {
        padding: 1.5rem 1rem;
    }

    .trust-content h3 {
        font-size: 1.2rem;
    }

    .comparison-section {
        padding: 30px 0;
        margin: 0 15px;
        border-radius: 15px;
    }

    .comparison-title {
        font-size: 1.4rem;
    }
    
    .comparison-subtitle {
        font-size: 1rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .feature-name {
        gap: 10px;
    }
    
    .feature-name i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .comparison-footer {
        padding: 20px;
        margin: 0 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }



    .testimonial {
        padding: 1.5rem 1rem;
    }

    .testimonial::before {
        font-size: 4rem;
        top: 0;
        left: 10px;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    /* Client Success Showcase Mobile Small */
    .client-success-showcase {
        padding: 60px 0;
    }

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

    .showcase-subtitle {
        font-size: 1.1rem;
    }

    .header-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .header-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .card-title h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .upgrade-indicator, .safety-score {
        padding: 1rem;
    }

    .score-circle {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .card-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .metric-item {
        padding: 1rem 0.8rem;
    }

    .metric-value {
        font-size: 1.4rem;
    }

    .description-content {
        padding: 1.5rem;
    }

    .description-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .trust-item {
        padding: 0.6rem 0.8rem;
    }

    .trust-item span {
        font-size: 0.85rem;
    }

    .success-guarantee-banner {
        padding: 2.5rem 2rem;
    }

    .guarantee-text h3 {
        font-size: 1.8rem;
    }

    .guarantee-text p {
        font-size: 1rem;
    }

    .guarantee-badges {
        gap: 0.5rem;
    }

    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Competitor Warning Extra Small Screens */
    .competitor-warning {
        padding: 3rem 0;
    }

    .warning-title {
        font-size: 2rem;
    }

    .warning-description {
        font-size: 1rem;
    }

    .competitor-dashboard {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .activity-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .activity-text {
        font-size: 0.9rem;
    }

    .competitor-metrics {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .urgency-timer {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .timer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .timer-text strong {
        font-size: 1.1rem;
    }

    .threat-item {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }

    /* New Content Responsive - 768px */
    .threat-radar, .competitive-intel, .market-analysis, .gap-analysis {
        margin: 1rem 0;
        padding: 1rem;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .analysis-card {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .card-value {
        font-size: 1.1rem;
    }

    .gap-comparison {
        gap: 0.6rem;
    }

    .your-score, .competitor-score {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .your-score span, .competitor-score span {
        min-width: auto;
        font-size: 0.75rem;
    }

    .threat-item span {
        font-size: 0.9rem;
    }

    .btn-urgent, .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }

    .cta-guarantees {
        gap: 0.8rem;
    }

    .guarantee-item {
        font-size: 0.8rem;
    }
    
    .contact-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-title::after {
        width: 60px;
        height: 2px;
    }
    
    .contact-item {
        padding: 1.2rem 1.5rem;
        min-width: auto;
        max-width: 280px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }

    /* New Content Responsive - 480px */
    .threat-radar, .competitive-intel, .market-analysis, .gap-analysis {
        margin: 0.8rem 0;
        padding: 0.8rem;
    }

    .radar-circle {
        width: 60px;
        height: 60px;
    }

    .radar-sweep {
        height: 25px;
    }

    .radar-stat .stat-number {
        font-size: 1.2rem;
    }

    .analysis-card {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .card-value {
        font-size: 1rem;
    }

    .intel-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .intel-title {
        font-size: 0.8rem;
    }

    .intel-detail {
        font-size: 0.75rem;
    }

    .gap-item {
        padding: 1rem;
    }

    .score-bar {
        height: 6px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Performance Optimizations */
* {
    will-change: auto;
}

.benefit, .step, .testimonial, .faq-item {
    contain: layout style paint;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improved focus states for accessibility */
*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gradient-text,
    .section-title-bold {
        background: none;
        -webkit-text-fill-color: initial;
        color: #000;
    }
    
    .benefit-icon,
    .step-number,
    .security-badge {
        background: #000;
        color: #fff;
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Client Success Showcase */
.client-success-showcase {
    padding: 120px 0;
    background: 
        linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #334155 100%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.client-success-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='60' cy='60' r='2'/%3E%3Ccircle cx='30' cy='30' r='1.2'/%3E%3Ccircle cx='90' cy='90' r='1.2'/%3E%3Ccircle cx='20' cy='80' r='0.8'/%3E%3Ccircle cx='100' cy='40' r='0.8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 40s ease-in-out infinite;
}

.client-success-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 50%, rgba(168, 85, 247, 0.05) 100%);
    animation: showcaseGlow 25s ease-in-out infinite alternate;
}

@keyframes showcaseGlow {
    0% { opacity: 0.6; transform: translateX(-15px) translateY(-10px); }
    100% { opacity: 1; transform: translateX(15px) translateY(10px); }
}

.showcase-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 3;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.header-badge i {
    font-size: 1.1rem;
    color: #fbbf24;
}

.showcase-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.showcase-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.success-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    position: relative;
    z-index: 3;
}

.showcase-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.showcase-card.premium::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.showcase-card.featured {
    background: 
        linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.showcase-card.featured::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    transform: scaleX(1);
}

.showcase-card.elite {
    background: 
        linear-gradient(145deg, rgba(139, 92, 246, 0.15) 0%, rgba(107, 33, 168, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.showcase-card.elite::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-card:hover::before {
    transform: scaleX(1);
}

/* New card header styles */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 
        0 12px 25px rgba(59, 130, 246, 0.4),
        0 6px 12px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.showcase-card.premium .header-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 
        0 12px 25px rgba(59, 130, 246, 0.4),
        0 6px 12px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.showcase-card.featured .header-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 
        0 12px 25px rgba(245, 158, 11, 0.4),
        0 6px 12px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-badge {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* New card title area */
.card-title {
    margin-bottom: 1.5rem;
}

.card-title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upgrade-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-from, .rank-to {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.rank-from {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.rank-to {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.upgrade-indicator i {
    color: #60a5fa;
    font-size: 1.2rem;
}

.safety-score {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    box-shadow: 
        0 12px 25px rgba(34, 197, 94, 0.4),
        0 6px 12px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.score-label {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.score-subtitle {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
}

.strategy-nodes {
    display: flex;
    gap: 0.5rem;
}

.node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.node.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.4);
}

.strategy-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

/* New metrics display area */
.card-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.metric-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: 
        linear-gradient(145deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.metric-item:hover {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.success-showcase-grid .metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.showcase-card.premium .metric-value {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-card.featured .metric-value {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-card.elite .metric-value {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* New card description styles */
.card-description {
    flex: 1;
    margin-top: auto;
}

.description-content {
    padding: 2rem;
    background: 
        linear-gradient(145deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.description-content p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.trust-indicator-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.trust-indicator-item i {
    font-size: 1.1rem;
    color: #22c55e;
    min-width: 20px;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.trust-indicator-item span {
    font-size: 0.9rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.success-guarantee-banner {
    background: 
        linear-gradient(145deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.success-guarantee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    animation: guaranteePulse 8s ease-in-out infinite;
}

@keyframes guaranteePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
    animation: guaranteeFloat 3s ease-in-out infinite;
}

@keyframes guaranteeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.guarantee-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

    .guarantee-cta {
        text-align: center;
        width: 100%;
    }

.guarantee-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Market Insights Section */
.market-insights {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1c29 0%, #2a2d3e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.market-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 59, 59, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(255, 59, 59, 0.05) 0%, transparent 55%);
}

.insights-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.insights-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.3),
        0 1px 3px rgba(239, 68, 68, 0.2);
    animation: pulse 2s infinite;
}

.insights-badge i {
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    }
}

.insights-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.insights-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.insights-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    align-items: end;
}

/* Market Dashboard Styles */
.market-dashboard {
    background: rgba(30, 32, 47, 0.8);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.dashboard-section {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-section:last-child {
    border-bottom: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title i {
    color: #ef4444;
    font-size: 1.1rem;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.metric-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(20, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.metric-box.urgent {
    border-left: 4px solid #ef4444;
}

.metric-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(30, 32, 47, 0.8);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.metric-data {
    flex: 1;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.analysis-item {
    padding: 1.25rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.analysis-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.chart-bar {
    height: 1.5rem;
    background: #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0 0.75rem;
}

.bar-fill.negative {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.bar-fill.positive {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.chart-caption {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: right;
}

.rank-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.current-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
}

.rank-indicator i {
    color: #ef4444;
    font-size: 0.9rem;
}

.previous-rank {
    font-size: 0.85rem;
    color: #64748b;
}

/* Gap Analysis */
.gap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.gap-item {
    padding: 1.25rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.gap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gap-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.gap-deficit {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ef4444;
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 1rem;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.comp-label {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
}

.comp-bar {
    height: 0.75rem;
    background: #e2e8f0;
    border-radius: 0.375rem;
    overflow: hidden;
}

.comp-fill {
    height: 100%;
    border-radius: 0.375rem;
}

.comp-fill.your {
    background: #3b82f6;
}

.comp-fill.competitor {
    background: #f59e0b;
}

/* Strategy Section */
.strategy-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strategy-header {
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}

.strategy-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #ef4444 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-card {
    padding: 1.75rem;
    border-radius: 12px;
    background: rgba(30, 32, 47, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(40, 42, 57, 0.7);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.2);
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.strategy-cta {
    margin-top: auto;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.pulse-button {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(239, 68, 68, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    }
}

.guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.guarantee-item i {
    color: #f5576c;
}

@media (max-width: 1024px) {
    .insights-content {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .market-insights {
        padding: 4rem 0;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-subtitle {
        font-size: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .insights-title {
        font-size: 1.75rem;
    }
    
    .dashboard-section {
        padding: 1.5rem;
    }
    
    .metric-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .metric-icon {
        margin-bottom: 0.75rem;
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
    
    .strategy-cta {
        padding: 1.25rem;
    }
}

/* Threat Alerts */
.threat-alerts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.threat-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(20, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.threat-alert:hover {
    transform: translateX(5px);
    background: rgba(30, 32, 47, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.threat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.threat-details {
    flex: 1;
}

.threat-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.threat-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.threat-severity {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.threat-severity.critical {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse-light 2s infinite;
}

.threat-severity.high {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.threat-severity.medium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

@keyframes pulse-light {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Performance Comparison */
.performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.performance-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(20, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.performance-row:hover {
    background: rgba(30, 32, 47, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.performance-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.performance-value {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}

.performance-value.negative {
    color: #ef4444;
}

.performance-value.positive {
    color: #10b981;
}

.performance-trend {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: right;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.performance-trend.negative {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.performance-trend.positive {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

/* Improved responsive design - Optimize display of three modules on mobile */

/* 1. "These Businesses Skyrocketed Their Rankings" module responsive optimization */
@media (max-width: 768px) {
    .showcase-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .success-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .showcase-card {
        padding: 1.5rem;
    }
    
    .card-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .metric-item {
        padding: 1rem 0.5rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .card-description {
        padding: 0;
    }
    
    .description-content {
        padding: 1.2rem;
    }
    
    .description-content p {
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        flex-direction: column;
    }
    
    .trust-indicator-item {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .card-title h3 {
        font-size: 1.4rem;
    }
    
    .card-metrics {
        padding: 1rem 0;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
    
    .metric-desc {
        font-size: 0.7rem;
    }
}

/* 2. "Your Competitors Are Dominating With PBN Links" module responsive optimization */
@media (max-width: 768px) {
    .insights-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insights-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .insights-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .market-dashboard {
        margin: 0 10px;
    }
    
    .dashboard-section {
        padding: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .threat-alerts {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .threat-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .threat-icon {
        margin-bottom: 0;
    }
    
    .threat-severity {
        align-self: flex-start;
    }
    
    .performance-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .performance-trend {
        margin-top: 0.3rem;
    }
    
    .strategy-section {
        margin: 0 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strategy-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .insights-title {
        font-size: 1.8rem;
    }
    
    .insights-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .metric-box {
        padding: 1rem;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .strategy-header h3 {
        font-size: 1.6rem;
    }
    
    .strategy-header p {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
}

/* 3. "Compare Us with Other PBN Providers" module responsive optimization */
@media (max-width: 768px) {
    .comparison-section {
        margin: 40px 10px;
        padding: 30px 15px;
    }
    
    .comparison-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .comparison-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .comparison-table-container {
        overflow-x: auto;
        margin: 0 -15px;
        padding: 0 15px;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 650px;
    }
    
    .comparison-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .comparison-highlight {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison-title {
        font-size: 1.6rem;
    }
    
    .comparison-subtitle {
        font-size: 0.9rem;
    }
    
    .comparison-section {
        padding: 25px 10px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .highlight-text h4 {
        font-size: 1.2rem;
    }
    
    .highlight-text p {
        font-size: 0.9rem;
    }
    
    .comparison-table-container:before {
        content: "â† Swipe to see more â†’";
        display: block;
        text-align: center;
        padding: 8px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 10px;
    }
}

/* Fix icon display issues in the market insights module */
.market-dashboard .metric-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

/* Ensure dashboard metric icons on the right side of the banner maintain their original pink gradient style */
.seo-dashboard .metric-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
}

/* Improved mobile styles for Success Guarantee Banner */
@media (max-width: 768px) {
    .success-guarantee-banner {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .guarantee-icon {
        margin: 0 auto;
    }
    
    .guarantee-text h3 {
        font-size: 2rem;
    }
    
    .guarantee-text p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .guarantee-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .success-guarantee-banner {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .guarantee-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .guarantee-text h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .guarantee-text p {
        font-size: 0.9rem;
    }
    
    .guarantee-cta .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq {
        padding: 6rem 0;
    }
    
    .faq .section-title-bold {
        font-size: 2.5rem;
    }
    
    .faq .section-subtitle-bold {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .faq-item {
        margin: 0 1rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 5rem 0;
    }
    
    .faq .section-title-bold {
        font-size: 2rem;
    }
    
    .faq .section-subtitle-bold {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.3rem 1.5rem;
    }
    
    .faq-question:hover,
    .faq-item.active .faq-question {
        padding-left: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        margin: 0 0.8rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* FAQ Section - Specific Title Styles */
.faq-main-title {
    color: white !important;
    font-weight: 700 !important;
    font-size: 3.2rem !important;
    position: relative !important;
    display: inline-block !important;
    letter-spacing: -0.015em !important;
    margin: 0 !important;
    text-align: center !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.2 !important;
}

.faq-main-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #7dd3fc, #38bdf8) !important;
    border-radius: 2px !important;
}

.faq-main-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-size: 1.2rem !important;
    margin-top: 2rem !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.4 !important;
}

/* FAQ Mobile Responsive for New Titles */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2.8rem !important;
    }
    
    .faq-main-subtitle {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 2.2rem !important;
    }
    
    .faq-main-subtitle {
        font-size: 1rem !important;
    }
}

/* Package Section - Specific Title Styles */
.package-main-title {
    color: white !important;
    font-weight: 700 !important;
    font-size: 3rem !important;
    position: relative !important;
    display: inline-block !important;
    letter-spacing: -0.015em !important;
    margin: 0 !important;
    text-align: center !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.2 !important;
}

.package-main-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #667eea, #764ba2) !important;
    border-radius: 2px !important;
}

.package-main-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.4 !important;
}

/* Package Mobile Responsive for New Titles */
@media (max-width: 768px) {
    .package-main-title {
        font-size: 2.5rem !important;
    }
    
    .package-main-subtitle {
        font-size: 1.2rem !important;
        padding: 0 1rem !important;
    }
}

@media (max-width: 480px) {
    .package-main-title {
        font-size: 2rem !important;
    }
    
    .package-main-subtitle {
        font-size: 1.1rem !important;
    }
}

.strategy-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.new-strategy-block {
    width: 100%;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.1);
    margin-bottom: 1rem;
    text-align: center;
    color: #ef4444;
    font-weight: 600;
    border: 1px solid #ef4444;
}

.new-strategy-block p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #f87171;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.strategy-header {
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}

/* Payment Info Styles */
.payment-info {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fc;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.payment-support {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.payment-address {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.address-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.address-value {
    font-weight: bold;
    word-break: break-all;
    color: #1e293b;
    font-size: 1rem;
}</pre></body></html>