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

:root {
    --primary: #ffe417;
    --primary-dark: #e6cd15;
    --primary-light: #fff64d;
    --primary-glow: rgba(255, 228, 23, 0.3);
    --red-impact: #ff2d55;
    --red-soft: #ff6b8a;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --glass: rgba(255, 228, 23, 0.08);
    --glass-strong: rgba(255, 228, 23, 0.15);
    --glass-border: rgba(255, 228, 23, 0.25);
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-red: linear-gradient(135deg, var(--red-impact) 0%, var(--red-soft) 100%);
    --protection-gradient: linear-gradient(135deg, var(--primary) 0%, #ffd700 50%, var(--primary-light) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 50%, var(--dark) 100%);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 228, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-light);
    box-shadow: 0 4px 20px var(--primary-glow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
}

.anodi-badge-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nrm-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--white);
}

.logo-text {
    color: var(--dark);
}

.year-text {
    color: var(--red-impact);
    font-weight: 900;
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0.5rem;
    border: 2px solid var(--white);
}

.nav-tab {
    background: none;
    border: none;
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-tab:hover {
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.nav-tab.active {
    color: var(--primary);
    background: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    background: #25d366;
    border: 2px solid var(--white);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-impact);
    border: 2px solid var(--white);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.live-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

/* Main Container */
.main-container {
    padding-top: 90px;
    min-height: 100vh;
}

.view {
    display: none;
    min-height: calc(100vh - 90px);
}

.view.active {
    display: block;
}

/* Hero Section */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 90px);
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-strong);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.protection-text {
    display: block;
    background: var(--protection-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px var(--primary-glow);
}

.for-all-text {
    display: block;
    color: var(--white);
    margin: 0.5rem 0;
}

.gradient-text {
    display: block;
    color: var(--red-impact);
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(255, 45, 85, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.impact-text {
    color: var(--red-impact);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 2px 10px var(--primary-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.primary-btn {
    background: var(--gradient);
    color: var(--dark);
    border: none;
    border-radius: 16px;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--primary-glow);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.primary-btn svg {
    width: 22px;
    height: 22px;
}

.secondary-btn {
    background: var(--glass);
    color: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.secondary-btn:hover {
    background: var(--glass-strong);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.secondary-btn svg {
    width: 22px;
    height: 22px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 650px;
}

.protection-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-card {
    position: absolute;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.showcase-card.featured {
    background: var(--glass-strong);
    border: 3px solid var(--primary);
    box-shadow: 0 12px 40px var(--primary-glow);
    transform: scale(1.1);
}

.showcase-card:hover {
    transform: translateY(-15px) scale(1.08);
    background: var(--glass-strong);
    border-color: var(--primary);
    box-shadow: 0 15px 50px var(--primary-glow);
}

.showcase-card:nth-child(1) {
    top: 5%;
    left: 5%;
    width: 220px;
}

.showcase-card:nth-child(2) {
    top: 15%;
    right: 10%;
    width: 180px;
}

.showcase-card:nth-child(3) {
    bottom: 35%;
    left: 10%;
    width: 190px;
}

.showcase-card:nth-child(4) {
    bottom: 5%;
    right: 5%;
    width: 180px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--white);
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
}

.card-impact {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-25px) rotate(1deg); }
    66% { transform: translateY(15px) rotate(-1deg); }
}

/* Policies Section */
.policies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.header-badge {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 25px rgba(255, 45, 85, 0.4);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: var(--protection-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Policy */
.featured-policy {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: var(--glass-strong);
    border: 3px solid var(--primary);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.featured-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--protection-gradient);
}

.featured-badge {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.featured-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary);
}

.featured-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--white);
}

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

.featured-impact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.impact-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-impact);
    text-shadow: 0 4px 20px rgba(255, 45, 85, 0.4);
}

.impact-label {
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 600;
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.protection-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--protection-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px var(--primary-glow);
    animation: rotate 20s linear infinite;
}

.circle-content {
    text-align: center;
    color: var(--dark);
}

.circle-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
}

.circle-subtext {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Policy Cards Grid */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.policy-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.policy-card:hover {
    transform: translateY(-10px);
    background: var(--glass-strong);
    border-color: var(--primary);
    box-shadow: 0 15px 50px var(--primary-glow);
}

.policy-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.policy-title h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.policy-theme {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.policy-description {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

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

.impact-stat {
    display: flex;
    flex-direction: column;
}

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

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

.impact-badge {
    background: var(--gradient-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Connect Section */
.connect-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.connect-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    height: calc(100vh - 250px);
}

.chat-section {
    display: flex;
    flex-direction: column;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-impact);
    border: 2px solid var(--white);
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.chat-container {
    flex: 1;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
}

.chat-message {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 85%;
    border: 2px solid transparent;
}

.chat-message.anodi {
    background: var(--gradient);
    color: var(--dark);
    margin-left: auto;
    border-bottom-right-radius: 6px;
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.chat-message.user {
    background: var(--dark-lighter);
    border-bottom-left-radius: 6px;
    border-color: var(--glass-border);
}

.chat-message .fw-bold {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.chat-input-container {
    display: flex;
    gap: 1rem;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(20px);
}

.chat-input-container input {
    flex: 1;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    outline: none;
    font-weight: 500;
}

.chat-input-container input::placeholder {
    color: var(--gray);
}

.chat-input-container button {
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.chat-input-container button svg {
    width: 22px;
    height: 22px;
}

/* Engagement Section */
.engagement-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-poll {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.quick-poll h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.poll-question {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poll-option {
    background: var(--dark-lighter);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.poll-option:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    background: var(--glass);
}

.poll-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    background: var(--gradient);
    width: var(--width);
    transition: width 0.6s ease;
    border-radius: 0 0 14px 14px;
}

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

.action-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.action-card.primary-action {
    background: var(--glass-strong);
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.action-card:hover {
    background: var(--glass-strong);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px var(--primary-glow);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    flex-shrink: 0;
}

.action-icon svg {
    width: 28px;
    height: 28px;
}

.action-content {
    flex: 1;
}

.action-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.action-content p {
    color: var(--gray-light);
    font-size: 1rem;
}

.action-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 900;
}

/* Impact Section */
.pulse-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.impact-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.impact-card.featured-impact {
    background: var(--glass-strong);
    border: 3px solid var(--primary);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.impact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px var(--primary-glow);
}

.impact-card.full-width {
    grid-column: 1 / -1;
}

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

.impact-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.pulse-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-indicator.active {
    background: #4ade80;
}

.pulse-indicator.trending {
    background: var(--primary);
}

.pulse-indicator.growing {
    background: #60a5fa;
}

.protection-meter {
    position: relative;
    width: 100%;
    height: 120px;
    background: var(--dark-lighter);
    border-radius: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--fill);
    background: var(--protection-gradient);
    border-radius: 60px;
    transition: width 1s ease;
}

.meter-label {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.meter-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.meter-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.impact-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 2px 10px var(--primary-glow);
}

.metric-label {
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 600;
}

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

.interest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.interest-item span {
    font-weight: 600;
    color: var(--white);
}

.interest-bar {
    flex: 1;
    height: 12px;
    background: var(--dark-lighter);
    border-radius: 6px;
    overflow: hidden;
}

.interest-fill {
    height: 100%;
    background: var(--gradient);
    width: var(--width);
    transition: width 0.8s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 350px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-lighter);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: var(--glass);
    border-color: var(--primary);
    transform: translateX(8px);
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.activity-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.activity-time {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 228, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 45, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 228, 23, 0.08) 0%, transparent 50%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 228, 23, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 228, 23, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: patternMove 25s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: elementFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.4;
}

.float-element:nth-child(1) { top: 15%; left: 10%; }
.float-element:nth-child(2) { top: 70%; left: 85%; }
.float-element:nth-child(3) { top: 85%; left: 15%; }
.float-element:nth-child(4) { top: 25%; left: 75%; }

@keyframes elementFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-120px) translateX(60px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-60px) translateX(-40px) rotate(180deg); opacity: 0.6; }
    75% { transform: translateY(-100px) translateX(30px) rotate(270deg); opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .connect-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-policy {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-tabs {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .protection-showcase {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

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

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

::-webkit-scrollbar-track {
    background: var(--dark-lighter);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

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