/* Reset and 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: #1a1a2e;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a6f 50%, #355a7f 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Gradient with Stars - Elegant Style */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(248, 224, 142, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(234, 172, 77, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(229, 152, 102, 0.15) 0%, transparent 50%),
        radial-gradient(2px 2px at 20% 80%, white, transparent),
        radial-gradient(2px 2px at 60% 30%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(248, 224, 142, 0.8), transparent);
    background-size: 
        200% 200%,
        200% 200%,
        200% 200%,
        200px 200px,
        250px 250px,
        300px 300px,
        280px 280px,
        220px 220px;
    animation: backgroundMove 25s ease infinite, twinkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(3%, 3%) rotate(90deg); }
    50% { transform: translate(-2%, 4%) rotate(180deg); }
    75% { transform: translate(4%, -2%) rotate(270deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mesh Gradient Overlay with Enhanced Pattern - Elegant Style */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(248, 224, 142, 0.05) 2px, rgba(248, 224, 142, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(234, 172, 77, 0.05) 2px, rgba(234, 172, 77, 0.05) 4px),
        radial-gradient(circle at 0% 0%, rgba(229, 152, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Premium Floating Particles */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 20s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    color: #1a1a2e;
    border-color: transparent;
    box-shadow: 
        0 10px 40px rgba(229, 152, 102, 0.5),
        0 0 0 1px rgba(248, 224, 142, 0.3) inset;
    position: relative;
    z-index: 1;
    font-weight: 800;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 25px 70px rgba(234, 172, 77, 0.7),
        0 0 60px rgba(248, 224, 142, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 95, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(248, 224, 142, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(234, 172, 77, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(229, 152, 102, 0.3);
    animation: glow 3s ease-in-out infinite;
}

.nav-logo i {
    font-size: 2.25rem;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(229, 152, 102, 0.5));
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(229, 152, 102, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(234, 172, 77, 0.8)); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e59866, #eaac4d);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #eaac4d;
    text-shadow: 0 0 20px rgba(234, 172, 77, 0.6);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(229, 152, 102, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 50px rgba(229, 152, 102, 0.6);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: transparent;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% -40% auto -30%;
    height: 120%;
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.18) 0%, rgba(14, 165, 233, 0) 60%),
                radial-gradient(circle at center right, rgba(30, 58, 138, 0.14) 0%, rgba(30, 58, 138, 0) 55%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -25% -40% 50%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 70%);
    filter: blur(40px);
    z-index: -3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-copy-card {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    padding: 2.75rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.hero-copy-card__glow {
    position: absolute;
    inset: -45%;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(30, 58, 138, 0.16), transparent 60%);
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 18px 28px rgba(14, 165, 233, 0.15);
}

.hero-badge::before,
.hero-badge::after {
    content: none;
}

.hero-badge i {
    color: var(--secondary);
    filter: none;
}

.hero-subtitle {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(30, 58, 138, 0.75);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-title {
    color: var(--neutral-900);
    text-shadow: none;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(
        135deg, 
        #e59866 0%, 
        #f8e08e 25%,
        #eaac4d 50%, 
        #f8e08e 75%,
        #e59866 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 300% 300%;
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(234, 172, 77, 0.5));
}

.gradient-text::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, #e59866, #f8e08e);
    filter: blur(30px);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(55, 65, 81, 0.9);
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-divider {
    width: 100%;
    height: 1px;
    margin: 2.25rem 0 2.5rem;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0), rgba(30, 58, 138, 0.25), rgba(30, 58, 138, 0));
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.25rem;
    margin-top: 0;
}

.stat {
    text-align: center;
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.12);
}

.stat-number {
    color: var(--primary);
}

.stat-label {
    color: var(--neutral-500);
}

/* Premium Dashboard Preview */
.dashboard-card {
    position: relative;
    border-radius: 32px;
    padding: 2.5rem;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 60%, rgba(14, 165, 233, 0.82) 100%);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.35);
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    isolation: isolate;
    max-width: 540px;
    width: 100%;
}

.dashboard-card::before,
.dashboard-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.8;
    mix-blend-mode: lighten;
}

.dashboard-card::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -120px;
    background: rgba(14, 165, 233, 0.35);
}

.dashboard-card::after {
    width: 220px;
    height: 220px;
    bottom: -100px;
    left: 20%;
    background: rgba(59, 130, 246, 0.25);
}

.dashboard-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.dashboard-breadcrumb {
    display: flex;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.75);
}

.dashboard-breadcrumb .crumb.active {
    color: #fff;
    font-weight: 600;
}

.dashboard-date {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: rgba(226, 232, 240, 0.85);
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.dashboard-card__body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.dashboard-card__left,
.dashboard-card__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.1rem;
}

.glance-card {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    gap: 14px;
    align-items: center;
}

.glance-card.wide {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.glance-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
}

.glance-icon.voters {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.glance-icon.turnout {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.glance-label {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.glance-value {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.glance-trend {
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 4px;
}

.glance-trend.up {
    color: #34d399;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
}

.progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #34d399, #22d3ee);
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.35);
}

.progress-meta {
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-meta i {
    color: #34d399;
}

.support-card {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.support-trend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.support-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
}

.support-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.support-badge.positive {
    background: rgba(34, 197, 94, 0.15);
    color: #34d399;
}

.support-bars {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.support-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.support-bar .label {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
}

.support-bar .value {
    font-weight: 600;
}

.bar-track {
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.15);
}

.bar-fill.primary {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.bar-fill.warn {
    background: linear-gradient(90deg, #f97316, #facc15);
}

.bar-fill.neutral {
    background: linear-gradient(90deg, #9ca3af, #e5e7eb);
}

.heatmap-card {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.heatmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(226, 232, 240, 0.85);
}

.heatmap-header button {
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.3);
    color: #38bdf8;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.heatmap-tile {
    border-radius: 16px;
    padding: 14px;
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: grid;
    gap: 6px;
}

.heatmap-tile .tile-label {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
}

.heatmap-tile .tile-value {
    font-size: 1.6rem;
    font-weight: 700;
}

.tile-delta {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tile-delta.up {
    color: #34d399;
}

.tile-delta.down {
    color: #f97316;
}

.tile-delta.flat {
    color: rgba(226, 232, 240, 0.6);
}

.heatmap-tile.good {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.heatmap-tile.neutral {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.24);
}

.heatmap-tile.alert {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.32);
}

.alert-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(14, 165, 233, 0.22) 100%);
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.18);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: #fff;
}

.alert-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-title {
    font-weight: 600;
    color: rgba(226, 232, 240, 0.95);
}

.alert-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.85);
}

.alert-cta {
    margin-top: 0.25rem;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    padding: 8px 14px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(
        135deg, 
        #ffffff 0%, 
        #f8e08e 50%,
        #eaac4d 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background-size: 200% 200%;
    animation: titleGradient 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(234, 172, 77, 0.3));
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(248, 224, 142, 0.15);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(234, 172, 77, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 224, 142, 0.12) 0%, rgba(234, 172, 77, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 224, 142, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.8s ease;
    animation: cardGlow 6s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0; }
    50% { transform: translate(-25%, -25%) scale(1); opacity: 0.3; }
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(234, 172, 77, 0.3),
        0 0 60px rgba(248, 224, 142, 0.2);
    border-color: rgba(248, 224, 142, 0.4);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 10px 35px rgba(229, 152, 102, 0.5),
        0 0 20px rgba(234, 172, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        45deg,
        #e59866,
        #f8e08e,
        #eaac4d,
        #f8e08e,
        #e59866
    );
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: iconGradient 3s ease infinite;
}

@keyframes iconGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 
        0 20px 50px rgba(234, 172, 77, 0.7),
        0 0 40px rgba(248, 224, 142, 0.5);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list i {
    color: #10b981;
    font-size: 14px;
    background: rgba(16, 185, 129, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #f8fafc;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    margin-bottom: 2rem;
}

.step-visual {
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #667eea;
    font-size: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(248, 224, 142, 0.15);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 45px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(234, 172, 77, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 224, 142, 0.12) 0%, rgba(234, 172, 77, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(248, 224, 142, 0.2) 0%, transparent 50%);
    transition: all 1s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover::after {
    bottom: -50%;
    left: -50%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(234, 172, 77, 0.35),
        0 0 80px rgba(248, 224, 142, 0.3);
    border-color: rgba(248, 224, 142, 0.5);
}

.pricing-card.featured {
    border: 3px solid rgba(248, 224, 142, 0.5);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(248, 224, 142, 0.12) 0%, rgba(234, 172, 77, 0.08) 100%);
    box-shadow: 
        0 15px 50px rgba(234, 172, 77, 0.3),
        0 0 60px rgba(248, 224, 142, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 
        0 45px 90px rgba(234, 172, 77, 0.4),
        0 0 100px rgba(248, 224, 142, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    color: #1a1a2e;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(229, 152, 102, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 4px;
    position: relative;
    z-index: 1;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features i {
    color: #10b981;
    font-size: 16px;
    background: rgba(16, 185, 129, 0.2);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #666;
}

.pricing-note i {
    color: #667eea;
    margin-right: 8px;
}

/* Demo Section */
.demo {
    padding: 120px 0;
    background: transparent;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(240, 147, 251, 0.2) 100%);
    transform: translateX(-50%) rotate(-10deg);
    pointer-events: none;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.demo .section-title {
    color: white;
}

.demo .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.demo-features {
    margin: 2rem 0;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.demo-feature i {
    color: #10b981;
}

.demo-actions {
    display: flex;
    gap: 1rem;
}

.demo .btn-primary {
    background: white;
    color: #667eea;
}

.demo .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.demo-video {
    position: relative;
}

.video-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.video-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(248, 224, 142, 0.15);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(234, 172, 77, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 224, 142, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(234, 172, 77, 0.3),
        0 0 60px rgba(248, 224, 142, 0.2);
    border-color: rgba(248, 224, 142, 0.4);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    font-size: 1.1rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 5rem;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -30px;
    left: -15px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(229, 152, 102, 0.4);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e59866 0%, #eaac4d 50%, #f8e08e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(229, 152, 102, 0.4);
    transition: all 0.4s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(234, 172, 77, 0.6);
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(248, 224, 142, 0.2);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(234, 172, 77, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(229, 152, 102, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(229, 152, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-copy-card {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-highlight {
        margin-top: 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-pill {
        width: 100%;
        justify-content: center;
    }

    .dashboard-card {
        padding: 2rem;
        margin: 0 auto;
    }

    .dashboard-card__body {
        grid-template-columns: 1fr;
    }

    .glance-card.wide {
        grid-column: span 1;
    }

    .heatmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .demo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* ==========================================================================
   Professional Color Refresh (Nov 2025)
   ========================================================================== */

:root {
    --primary: #1e3a8a;
    --primary-dark: #152861;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --neutral-900: #0f172a;
    --neutral-700: #374151;
    --neutral-500: #64748b;
    --neutral-200: #e2e8f0;
    --neutral-100: #f5f7fb;
    --surface: #ffffff;
}

body {
    background: var(--neutral-100);
    color: var(--neutral-900);
}

body::before,
body::after,
.particle {
    display: none;
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
    padding: 1rem 0;
}

.nav-link {
    color: var(--neutral-700);
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: none;
}

.nav-link::after {
    background: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.25);
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.3);
    transform: translateY(-2px);
}

.nav-logo {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--primary);
    text-shadow: none;
    animation: none;
}

.nav-logo i {
    background: none;
    color: var(--primary);
    filter: none;
}

.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
}

.hero::before,
.hero::after {
    display: none;
}

.hero-badge {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary);
    box-shadow: none;
    animation: none;
}

.hero-badge i {
    color: var(--secondary);
    filter: none;
    animation: none;
}

.hero-title {
    color: var(--neutral-900);
    text-shadow: none;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 45%, var(--primary) 90%);
    filter: none;
    animation: none;
}

.hero-description {
    color: var(--neutral-700);
    text-shadow: none;
    max-width: 560px;
}

.hero-highlight {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(30, 58, 138, 0.1) 0%, rgba(14, 165, 233, 0.2) 100%);
    color: var(--primary);
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 2.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.12);
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-pill i {
    color: var(--secondary);
}

.hero-pill:hover {
    transform: translateY(-3px);
    background: rgba(30, 58, 138, 0.12);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.1);
}

.hero-actions {
    flex-wrap: wrap;
}

.btn {
    border-radius: 14px;
    letter-spacing: 0.25px;
    text-transform: none;
    padding: 14px 28px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 18px 30px rgba(30, 58, 138, 0.25);
    font-weight: 600;
}

.btn-primary::before,
.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(30, 58, 138, 0.28);
    filter: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(30, 58, 138, 0.3);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(30, 58, 138, 0.06);
    border-color: rgba(30, 58, 138, 0.4);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-outline {
    color: var(--primary);
    border-color: rgba(30, 58, 138, 0.3);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.hero-stats {
    gap: 2rem;
}

.stat-number {
    color: var(--primary);
}

.stat-label {
    color: var(--neutral-500);
}

.dashboard-preview {
    background: var(--surface);
    backdrop-filter: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
    transform: none;
    animation: none;
}

.dashboard-preview:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: 0 28px 52px rgba(15, 23, 42, 0.16);
}

.dashboard-header {
    background: var(--neutral-100);
    border-bottom: 1px solid var(--neutral-200);
}

.tab {
    color: var(--neutral-500);
}

.tab.active {
    background: var(--primary);
}

.metric-card,
.chart-placeholder {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.metric-value {
    color: var(--neutral-900);
}

.metric-label {
    color: var(--neutral-500);
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.15);
    color: var(--primary);
    box-shadow: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--neutral-900);
    -webkit-text-fill-color: currentColor;
    background: none;
    animation: none;
    filter: none;
}

.section-description {
    color: var(--neutral-500);
}

.features {
    background: var(--neutral-100);
        padding: 100px 0;
}

.feature-card {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.feature-card::before,
.feature-card::after {
    display: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 58, 138, 0.25);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: none;
}

.feature-icon::before {
    display: none;
}

.feature-card h3 {
    color: var(--neutral-900);
}

.feature-card p {
    color: var(--neutral-500);
}

.feature-list li {
    color: var(--neutral-500);
}

.pricing {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    padding: 100px 0;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    backdrop-filter: none;
}

.pricing-card::before,
.pricing-card::after {
    display: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 58, 138, 0.25);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.14);
}

.pricing-card.featured {
    border: 2px solid rgba(30, 58, 138, 0.25);
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
    box-shadow: 0 24px 45px rgba(30, 58, 138, 0.18);
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
}

.pricing-badge {
    background: var(--secondary);
    color: #fff;
    box-shadow: none;
}

.pricing-header h3 {
    color: var(--neutral-900);
}

.currency,
.period {
    color: var(--neutral-500);
}

.amount {
    background: none;
    color: var(--neutral-900);
    -webkit-text-fill-color: currentColor;
}

.pricing-features li {
    color: var(--neutral-500);
}

.pricing-note {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--neutral-500);
}

.demo {
    background: var(--surface);
    color: var(--neutral-900);
}

.demo::before {
    display: none;
}

.demo .section-badge {
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.15);
    color: var(--secondary);
}

.demo .section-title,
.demo .section-description {
    color: var(--neutral-900);
}

.demo-feature {
    color: var(--neutral-700);
}

.demo-feature i {
    color: var(--secondary);
}

.demo .btn-primary {
    background: var(--primary);
    color: #fff;
}

.demo .btn-secondary {
    border-color: rgba(30, 58, 138, 0.25);
    color: var(--primary);
}

.video-placeholder {
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.play-button {
    background: var(--primary);
    color: #fff;
}

.video-overlay {
    color: var(--neutral-900);
}

.testimonials {
    background: var(--neutral-100);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.testimonial-card::before {
    display: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 58, 138, 0.25);
}

.testimonial-content p {
    color: var(--neutral-700);
}

.testimonial-content p::before {
    background: none;
    color: var(--primary);
    -webkit-text-fill-color: currentColor;
    opacity: 0.2;
}

.author-avatar {
    background: var(--neutral-100);
    color: var(--primary);
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.author-info h4 {
    color: var(--neutral-900);
}

.author-info p {
    color: var(--neutral-500);
}

.contact {
    background: var(--surface);
    padding: 100px 0;
}

.contact-methods {
    margin-top: 2.5rem;
}

.contact-method {
    align-items: flex-start;
}

.contact-icon {
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    box-shadow: none;
}

.contact-method:hover .contact-icon {
    transform: translateY(-2px);
    box-shadow: none;
    background: rgba(30, 58, 138, 0.12);
}

.contact-details h4 {
    color: var(--neutral-900);
}

.contact-details p {
    color: var(--neutral-500);
}

.contact-form {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--neutral-900);
}

.form-group label {
    color: var(--neutral-700);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(30, 58, 138, 0.4);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}

.footer {
    background: #0f172a;
    border-top: none;
    box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.08);
}

.footer-section h4,
.footer-logo span {
    color: #fff;
}

.footer-section p,
.footer-section ul li a {
    color: rgba(226, 232, 240, 0.8);
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-logo {
    color: #fff;
}

.social-link {
    background: rgba(226, 232, 240, 0.12);
    color: #fff;
}

.social-link:hover {
    background: #fff;
    color: var(--primary);
}

.footer-bottom p,
.footer-links a {
    color: rgba(226, 232, 240, 0.7);
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .hero-container,
    .demo-content,
    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        background: #ffffff;
        border-top: 1px solid var(--neutral-200);
    }

    .hero {
        padding: 110px 0 80px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    max-width: 560px;
    margin: 0 auto;
}

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-showcase__halo {
    position: absolute;
    inset: -35% -25% -15% -25%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.28), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(14, 165, 233, 0.22), transparent 65%);
    filter: blur(45px);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.hero-showcase__label {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.85);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 6px 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.hero-showcase__card {
    position: relative;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 26px 40px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(12px);
    color: #e2e8f0;
}

.hero-showcase__card--primary {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.85) 0%, rgba(30, 64, 175, 0.9) 100%);
    border-color: rgba(148, 163, 184, 0.25);
    color: #f8fafc;
}

.hero-showcase__card--secondary {
    margin-left: 18%;
}

.hero-showcase__card--tertiary {
    margin-right: 18%;
}

.card-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 232, 240, 0.7);
}

.card-value {
    margin: 0.5rem 0 1rem;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.card-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
}

.card-metrics span {
    display: block;
    color: rgba(226, 232, 240, 0.75);
}

.card-metrics strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
}

.card-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.card-trend.up {
    color: #34d399;
}

.card-footer {
    margin-top: 1.4rem;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.82);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: rgba(226, 232, 240, 0.88);
}

.card-list i {
    color: #38bdf8;
    margin-right: 10px;
}

.card-list li {
    display: flex;
    align-items: center;
}

.hero-showcase__card--tertiary p {
    margin: 1rem 0;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.85);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #93c5fd;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 12px;
    padding: 8px 14px;
    cursor: pointer;
}

.card-cta:hover {
    color: #fff;
    border-color: rgba(148, 163, 184, 0.5);
}

/* Dashboard Intro */
.dashboard-intro {
    position: relative;
    padding: 140px 0 110px;
    background: linear-gradient(135deg, #0b1530 0%, #14244d 45%, #0c1124 100%);
    color: #f8fafc;
    overflow: hidden;
}

.dashboard-intro__glow {
    position: absolute;
    inset: -20% -30% auto -30%;
    height: 120%;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 60%),
                radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.16) 0%, rgba(37, 99, 235, 0) 70%);
    filter: blur(50px);
    opacity: 0.85;
    z-index: 0;
}

.dashboard-intro__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    align-items: center;
}

.dashboard-intro__content h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
    color: #f8fafc;
    letter-spacing: -1px;
}

.dashboard-intro__content p {
    color: rgba(226, 232, 240, 0.82);
    font-size: 1.1rem;
    line-height: 1.7;
}

.dashboard-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.85);
}

.dashboard-intro__benefits {
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.dashboard-intro__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

.dashboard-intro__benefits i {
    color: #38bdf8;
    margin-top: 3px;
}

.dashboard-intro__actions {
    margin: 2.25rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-intro__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
}

.dashboard-intro__metrics strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: #38bdf8;
}

.metric-title {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.85);
    margin-bottom: 0.3rem;
}

.dashboard-intro__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
}

.hero-showcase__halo {
    position: absolute;
    inset: -35% -25% -15% -25%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.28), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(14, 165, 233, 0.22), transparent 65%);
    filter: blur(45px);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.hero-showcase__label {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.85);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 6px 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.hero-showcase__card {
    position: relative;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 26px 40px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(12px);
    color: #e2e8f0;
}

.hero-showcase__card--primary {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.85) 0%, rgba(30, 64, 175, 0.9) 100%);
    border-color: rgba(148, 163, 184, 0.25);
    color: #f8fafc;
}

.hero-showcase__card--secondary {
    margin-left: 18%;
}

.hero-showcase__card--tertiary {
    margin-right: 18%;
}

.visual-card__header,
.visual-card__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(226, 232, 240, 0.9);
}

.visual-card__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.visual-card__grid .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(226, 232, 240, 0.7);
}

.visual-card__grid .value {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.2rem 0;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.status--live {
    background: rgba(248, 113, 113, 0.18);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.trend--up {
    color: #34d399;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(134, 239, 172, 0.2);
    color: #22c55e;
}

.visual-card__footer {
    margin-top: 1.4rem;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.82);
}

.visual-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.92rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-right: 10px;
}

.tag--warning { background: rgba(248, 113, 113, 0.18); color: #f87171; }
.tag--info { background: rgba(56, 189, 248, 0.18); color: #38bdf8; }
.tag--success { background: rgba(134, 239, 172, 0.18); color: #22c55e; }

.visual-card__title {
    font-weight: 600;
}

.visual-card--timeline .timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.9rem;
}

.visual-card--timeline .timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
}

.timeline-item .detail {
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .dashboard-intro__container {
        gap: 2.5rem;
    }

    .dashboard-intro__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-intro__visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .visual-card--secondary,
    .visual-card--timeline {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .dashboard-intro {
        padding: 110px 0 80px;
    }

    .dashboard-intro__benefits li {
        font-size: 0.95rem;
    }

    .dashboard-intro__metrics {
        grid-template-columns: 1fr;
    }

    .visual-card__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visual-card--timeline .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}