/* Root Variables */
:root {
    --primary-color: #0A66C2;
    --primary-dark: #004182;
    --secondary-color: #00A0DC;
    --orange: #E67E22;
    --purple: #9B59B6;
    --teal: #16A085;
    --cyan: #00A0DC;
    --dark: #1a1a1a;
    --gray-dark: #2d2d2d;
    --gray: #5a5a5a;
    --gray-light: #e5e5e5;
    --white: #ffffff;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --gradient: linear-gradient(135deg, #0A66C2 0%, #00A0DC 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo i {
    font-size: 1.8rem;
}

.logo strong {
    font-weight: 800;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.highlight-nav {
    color: var(--teal) !important;
    font-weight: 700 !important;
    position: relative;
}

.highlight-nav::after {
    content: '🔥';
    margin-left: 0.25rem;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%230A66C2" opacity="0.1"/></svg>');
    opacity: 0.3;
}

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

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 102, 194, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* SSI Dashboard */
.hero-visual {
    animation: fadeInRight 0.8s ease-out;
}

.ssi-dashboard {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.ssi-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.dashboard-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

.score-badge {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: 600;
}

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

.component {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.component-name {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.component-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.progress-bar {
    height: 12px;
    background: var(--gray-light);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-fill.orange {
    background: linear-gradient(90deg, var(--orange), #f39c12);
}

.progress-fill.purple {
    background: linear-gradient(90deg, var(--purple), #8e44ad);
}

.progress-fill.teal {
    background: linear-gradient(90deg, var(--teal), #1abc9c);
}

.progress-fill.cyan {
    background: linear-gradient(90deg, var(--cyan), var(--primary-color));
}

.dashboard-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
    color: var(--success);
    font-weight: 600;
}

.dashboard-footer i {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.highlight-card {
    position: relative;
    border: 3px solid var(--teal) !important;
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.03), rgba(26, 188, 156, 0.03));
}

.highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--teal), #1abc9c);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.engagement-packages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.package-item {
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
}

.package-item:hover {
    border-color: var(--teal);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.package-header i {
    color: var(--teal);
    font-size: 1.2rem;
}

.package-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.featured-package {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05), rgba(142, 68, 173, 0.05));
    border: 2px solid var(--purple);
    position: relative;
}

.featured-package .package-header i {
    color: var(--purple);
}

.best-badge {
    background: linear-gradient(135deg, #f39c12, var(--warning));
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--orange), #f39c12);
}

.feature-icon.purple {
    background: linear-gradient(135deg, var(--purple), #8e44ad);
}

.feature-icon.teal {
    background: linear-gradient(135deg, var(--teal), #1abc9c);
}

.feature-icon.cyan {
    background: linear-gradient(135deg, var(--cyan), var(--primary-color));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--success);
    font-size: 1rem;
}

/* Engagement Packages Section */
.engagement-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.engagement-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 160, 133, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.engagement-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.engagement-option {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
}

.engagement-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-option {
    border-color: var(--purple);
    transform: scale(1.03);
    position: relative;
}

.featured-option:hover {
    transform: scale(1.06) translateY(-8px);
}

.premium-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f39c12, var(--warning));
    color: var(--white);
    padding: 0.5rem 3rem;
    font-weight: 800;
    font-size: 0.75rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    letter-spacing: 1px;
}

.option-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.option-icon.blue {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.option-icon.purple {
    background: linear-gradient(135deg, var(--purple), #8e44ad);
}

.option-icon.gradient {
    background: linear-gradient(135deg, #9B59B6, #E67E22);
    animation: pulse 2s ease-in-out infinite;
}

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

.option-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.option-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--gray-light);
    color: var(--gray-dark);
}

.option-badge.gold {
    background: linear-gradient(135deg, #f39c12, var(--warning));
    color: var(--white);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.option-content {
    padding: 2rem;
    flex: 1;
}

.option-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.option-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.option-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.option-features li i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.ssi-impact {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.05), rgba(0, 160, 220, 0.05));
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(10, 102, 194, 0.1);
}

.ssi-impact span {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.impact-bar {
    background: var(--gray-light);
    height: 32px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.impact-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    transition: width 1.5s ease-out;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.impact-fill.gold {
    background: linear-gradient(90deg, #f39c12, var(--warning));
}

.option-footer {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    border-top: 2px solid var(--gray-light);
}

.included-in {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
}

.included-in.premium {
    color: var(--purple);
    font-weight: 700;
}

.engagement-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.cta-content i {
    font-size: 3rem;
    color: var(--primary-color);
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cta-content p {
    color: var(--gray);
    margin: 0;
}

/* Build Relationships Section */
.relationships-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.relationships-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 160, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.relationships-section .engagement-comparison {
    position: relative;
    z-index: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.5;
}

.cta-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 4rem;
}

.comparison-header,
.comparison-row,
.comparison-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-row {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    align-items: center;
}

.comparison-row:hover {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.03), rgba(0, 160, 220, 0.03));
}

.highlight-row {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.05), rgba(26, 188, 156, 0.05));
    border-left: 4px solid var(--teal);
}

.comparison-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.component-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.comp-icon {
    font-size: 1.5rem;
}

.tier-col {
    text-align: center;
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tier-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.tier-detail {
    font-size: 0.85rem;
    color: var(--gray);
}

.tier-impact {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(10, 102, 194, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
}

.featured-col {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(0, 160, 220, 0.1));
    border-radius: 8px;
}

.featured-col .tier-label {
    color: var(--primary-color);
}

.featured-col .tier-impact {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.engagement-level {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(0, 160, 220, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.engagement-level i {
    font-size: 1.1rem;
}

.package-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.package-badges .engagement-level {
    margin-bottom: 0;
}

.component-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.05), rgba(0, 160, 220, 0.05));
    border-radius: 10px;
}

.component-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.component-item.highlight {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.1), rgba(26, 188, 156, 0.1));
    border: 2px solid var(--teal);
}

.component-item:hover {
    transform: translateX(5px);
}

.component-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.component-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.component-sublabel {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-dark);
    font-size: 1rem;
}

.pricing-features li i {
    font-size: 1.1rem;
    color: var(--success);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--gray);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        gap: 3rem;
    }

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

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

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

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

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .cta-group {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .engagement-comparison {
        grid-template-columns: 1fr;
    }

    .featured-option {
        transform: scale(1);
    }

    .featured-option:hover {
        transform: translateY(-8px);
    }

    .engagement-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row,
    .comparison-footer {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.85rem;
    }

    .component-col {
        font-size: 0.9rem;
    }

    .comp-icon {
        font-size: 1.2rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .score-number {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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