/* ==========================================================================
   Hariram Mailer Pro v2.0
   Enterprise Design System
   ========================================================================== */

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    /* Brand Colors */
    --hp-primary: #2563eb;
    --hp-primary-dark: #1d4ed8;
    --hp-primary-light: #60a5fa;

    --hp-success: #22c55e;
    --hp-warning: #f59e0b;
    --hp-danger: #ef4444;
    --hp-info: #06b6d4;

    /* Background */
    --hp-bg: #020617;
    --hp-bg-secondary: #0f172a;
    --hp-surface: #111827;
    --hp-surface-light: #1e293b;

    /* Text */
    --hp-text: #f8fafc;
    --hp-text-light: #cbd5e1;
    --hp-text-muted: #94a3b8;

    /* Borders */
    --hp-border: rgba(255,255,255,.08);
    --hp-border-light: rgba(255,255,255,.12);

    /* Glass */
    --hp-glass: rgba(255,255,255,.04);
    --hp-glass-hover: rgba(255,255,255,.08);

    /* Radius */
    --hp-radius-sm: .5rem;
    --hp-radius: 1rem;
    --hp-radius-lg: 1.5rem;
    --hp-radius-xl: 2rem;

    /* Shadows */
    --hp-shadow-sm: 0 8px 20px rgba(0,0,0,.18);
    --hp-shadow: 0 20px 40px rgba(0,0,0,.28);
    --hp-shadow-lg: 0 30px 80px rgba(0,0,0,.40);

    /* Container */
    --hp-container: 1320px;

    /* Animation */
    --hp-speed: .30s;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--hp-text);
    background: var(--hp-bg);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--hp-speed);
}

button,
input,
textarea,
select {
    font: inherit;
}

/* ==========================================================================
   Background
   ========================================================================== */

body {
    background:
        radial-gradient(circle at top right,
            rgba(37,99,235,.16),
            transparent 40%),
        radial-gradient(circle at bottom left,
            rgba(14,165,233,.12),
            transparent 35%),
        linear-gradient(
            180deg,
            #020617,
            #0f172a 100%);
}

.page-wrapper {
    position: relative;
    overflow: hidden;
}

.page-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.02) 1px,
            transparent 1px),
        linear-gradient(
            90deg,
            rgba(255,255,255,.02) 1px,
            transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: .35;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.8rem,5vw,4.8rem);
}

h2 {
    font-size: clamp(2rem,4vw,3.2rem);
}

h3 {
    font-size: 1.6rem;
}

p {
    color: var(--hp-text-light);
    margin-bottom: 1rem;
}

.text-gradient {
    background:
        linear-gradient(
            90deg,
            #60a5fa,
            #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted-light {
    color: var(--hp-text-muted);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container-xl {
    max-width: var(--hp-container);
}

.section {
    position: relative;
    padding: 7rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.py-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

/* ==========================================================================
   6. Button System
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .9rem 1.6rem;
    border-radius: var(--hp-radius);
    font-weight: 600;
    transition: all .30s ease;
    border: none;
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--hp-primary),
        var(--hp-primary-dark));
    color: #fff;
    box-shadow: 0 15px 35px rgba(37,99,235,.35);
}

.btn-primary:hover {
    box-shadow: 0 22px 45px rgba(37,99,235,.45);
}

.btn-outline-light {
    color: white;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.25);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   7. Glass Card
   ========================================================================== */

.glass-card {
    position: relative;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--hp-radius-lg);
    padding: 2rem;
    box-shadow: var(--hp-shadow);
    transition: all .35s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.16);
    box-shadow: var(--hp-shadow-lg);
}

/* ==========================================================================
   8. Cards
   ========================================================================== */

.card-dark {
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    transition: all .3s ease;
}

.card-dark:hover {
    border-color: rgba(255,255,255,.16);
    transform: translateY(-6px);
}

/* ==========================================================================
   9. Navigation
   ========================================================================== */

.navbar-landing {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(2,6,23,.75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: .30s;
}

.navbar-landing .navbar {
    min-height: 80px;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.landing-nav-link {
    position: relative;
    color: rgba(255,255,255,.75);
    padding: 1rem !important;
    font-weight: 500;
    transition: .3s;
}

.landing-nav-link:hover,
.landing-nav-link.active {
    color: white;
}

.landing-nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    height: 2px;
    background: var(--hp-primary);
    transform: scaleX(0);
    transition: .3s;
}

.landing-nav-link:hover::after,
.landing-nav-link.active::after {
    transform: scaleX(1);
}

.landing-nav-actions {
    display: flex;
    gap: .75rem;
    align-items: center;
}

@media (max-width:991.98px){
    .navbar-collapse{
        background:#0f172a;
        border:1px solid rgba(255,255,255,.08);
        border-radius:20px;
        padding:1.5rem;
        margin-top:1rem;
    }

    .landing-nav-actions{
        flex-direction:column;
        width:100%;
        margin-top:1rem;
    }

    .landing-nav-actions .btn{
        width:100%;
    }
}

/* ==========================================================================
   10. Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 8rem 0 7rem;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -220px;
    right: -180px;
    background:
        radial-gradient(circle,
            rgba(37,99,235,.25),
            transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -150px;
    bottom: -200px;
    background:
        radial-gradient(circle,
            rgba(6,182,212,.16),
            transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem 1rem;
    margin-bottom: 2rem;
    border-radius: 999px;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.30);
    color: #93c5fd;
    font-size: .9rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem,6vw,5rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1.75rem;
}

.hero-description {
    max-width: 650px;
    font-size: 1.15rem;
    color: var(--hp-text-light);
    margin-bottom: 2.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Hero Feature List
   ========================================================================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--hp-text-light);
    font-weight: 500;
}

.hero-feature i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34,197,94,.18);
    color: #4ade80;
}

/* ==========================================================================
   11. Dashboard Preview
   ========================================================================== */

.dashboard-preview {
    position: relative;
    z-index: 10;
}

.dashboard-window {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(15,23,42,.90);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--hp-shadow-lg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.dashboard-body {
    padding: 2rem;
}

.browser-dots {
    display: flex;
    gap: .5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1){
    background:#ef4444;
}

.browser-dots span:nth-child(2){
    background:#f59e0b;
}

.browser-dots span:nth-child(3){
    background:#22c55e;
}

/* ==========================================================================
   KPI Cards
   ========================================================================== */

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
}

.metric-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: .30s;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.16);
}

.metric-label {
    font-size: .85rem;
    color: var(--hp-text-muted);
    margin-bottom: .35rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.progress-modern{
    height:8px;
    background:rgba(255,255,255,.06);
    border-radius:999px;
    overflow:hidden;
}

.progress-modern .progress-bar{
    border-radius:999px;
    background: linear-gradient(90deg,#2563eb,#38bdf8);
}

/* ==========================================================================
   Hero Responsive
   ========================================================================== */

@media (max-width:991px){
    .hero-section{
        padding:6rem 0;
    }

    .hero-title{
        text-align:center;
    }

    .hero-description{
        text-align:center;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
        margin-bottom:3rem;
    }

    .dashboard-preview{
        margin-top:2rem;
    }
}

@media (max-width:767px){
    .metric-grid{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:2.6rem;
    }

    .hero-actions .btn{
        width:100%;
    }
}

/* ==========================================================================
   12. Features Section
   ========================================================================== */

.features-section {
    position: relative;
    padding: 7rem 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--hp-text-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: all .35s ease;
    overflow: hidden;
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background: linear-gradient(90deg,#2563eb,#38bdf8);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.feature-card:hover{
    transform: translateY(-10px);
    border-color: rgba(255,255,255,.18);
    box-shadow: var(--hp-shadow-lg);
}

.feature-card:hover::before{
    transform:scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(56,189,248,.20));
    color: white;
    font-size: 1.8rem;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.10);
}

.feature-card h3{
    margin-bottom:1rem;
    font-size:1.35rem;
}

.feature-card p{
    margin-bottom:1.5rem;
    color:var(--hp-text-light);
}

.feature-link{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-weight:600;
    color:#60a5fa;
    transition:.3s;
}

.feature-link:hover{
    gap:.8rem;
    color:white;
}

.feature-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-80px;
    top:-80px;
    background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
    opacity:0;
    transition:.35s;
}

.feature-card:hover::after{
    opacity:1;
}

@media (max-width:1199px){
    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:767px){
    .feature-grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:1.75rem;
    }

    .feature-icon{
        width:64px;
        height:64px;
        font-size:1.6rem;
    }
}

/* ==========================================================================
   13. Statistics Section
   ========================================================================== */

.statistics-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.statistics-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37,99,235,.08), transparent 70%);
    pointer-events: none;
}

.statistics-wrapper {
    position: relative;
    z-index: 2;
}

.stat-card {
    position: relative;
    padding: 2rem;
    text-align: center;
    border-radius: 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: all .35s ease;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,.16);
    box-shadow: var(--hp-shadow-lg);
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(56,189,248,.20));
    color: white;
    font-size: 2rem;
}

.stat-number {
    display: block;
    font-size: clamp(2.2rem,4vw,3.2rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: .75rem;
}

.stat-label {
    color: var(--hp-text-light);
    font-size: 1rem;
    font-weight: 500;
}

.stat-description {
    margin-top: 1rem;
    color: var(--hp-text-muted);
    font-size: .92rem;
    line-height: 1.6;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.trust-strip {
    margin-top: 5rem;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--hp-text-light);
    font-weight: 600;
}

.trust-item i {
    font-size: 1.5rem;
    color: #22c55e;
}

@media (max-width:1200px){
    .statistics-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:767px){
    .statistics-grid{
        grid-template-columns:1fr;
    }

    .trust-strip{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* ==========================================================================
   14. Platform Showcase
   ========================================================================== */

.platform-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.platform-wrapper {
    position: relative;
    z-index: 2;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.platform-content h2 {
    margin-bottom: 1.5rem;
}

.platform-content p {
    font-size: 1.1rem;
    color: var(--hp-text-light);
    margin-bottom: 2rem;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.platform-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.platform-item-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(56,189,248,.18));
    color: white;
    font-size: 1.3rem;
}

.platform-item h4 {
    margin-bottom: .35rem;
    font-size: 1.15rem;
}

.platform-item p {
    margin: 0;
    color: var(--hp-text-muted);
    font-size: .95rem;
}

.platform-preview {
    position: relative;
}

.platform-window {
    position: relative;
    background: rgba(15,23,42,.95);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
}

.platform-body {
    padding: 2rem;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-stat {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: .3s;
}

.platform-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.14);
}

.platform-stat small {
    display: block;
    color: var(--hp-text-muted);
    margin-bottom: .5rem;
}

.platform-stat strong {
    font-size: 1.6rem;
    color: white;
}

.queue-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.queue-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.queue-label {
    color: var(--hp-text-light);
    font-size: .95rem;
}

.queue-value {
    font-weight: 700;
    color: white;
}

.floating-card {
    position: absolute;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--hp-shadow);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.top {
    top: -30px;
    right: -25px;
}

.floating-card.bottom {
    left: -25px;
    bottom: -25px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width:992px){
    .platform-grid{
        grid-template-columns:1fr;
        gap:4rem;
    }

    .platform-preview{
        order:-1;
    }
}

@media (max-width:767px){
    .platform-stats{
        grid-template-columns:1fr;
    }

    .floating-card{
        display:none;
    }
}

/* ==========================================================================
   15. CTA Section
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-card {
    position: relative;
    padding: 5rem 4rem;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(14,165,233,.12));
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
}

.cta-card::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-250px;
    right:-180px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
    pointer-events:none;
}

.cta-title{
    font-size:clamp(2.5rem,5vw,4rem);
    font-weight:800;
    margin-bottom:1.5rem;
}

.cta-description{
    max-width:760px;
    margin:0 auto 2.5rem;
    font-size:1.15rem;
    color:var(--hp-text-light);
}

.cta-actions{
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

.cta-badges{
    display:flex;
    justify-content:center;
    gap:2rem;
    margin-top:3rem;
    flex-wrap:wrap;
}

.cta-badge{
    display:flex;
    align-items:center;
    gap:.75rem;
    font-weight:600;
    color:var(--hp-text-light);
}

.cta-badge i{
    color:#22c55e;
    font-size:1.3rem;
}

.cta-card::after{
    content:"";
    position:absolute;
    left:-150px;
    bottom:-150px;
    width:420px;
    height:420px;
    background: radial-gradient(circle, rgba(56,189,248,.12), transparent 70%);
    pointer-events:none;
}

@media(max-width:767px){
    .cta-card{
        padding:3rem 2rem;
    }

    .cta-actions .btn{
        width:100%;
    }
}

/* ==========================================================================
   16. Footer
   ========================================================================== */

.footer {
    position: relative;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(2,6,23,.95);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:3rem;
}

.footer-brand{
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:1rem;
}

.footer-description{
    color:var(--hp-text-light);
    line-height:1.8;
    max-width:380px;
}

.footer-title{
    margin-bottom:1.25rem;
    font-size:1rem;
    font-weight:700;
    color:white;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:.8rem;
}

.footer-links a{
    color:var(--hp-text-muted);
    transition:.3s;
}

.footer-links a:hover{
    color:white;
    padding-left:6px;
}

.footer-social{
    display:flex;
    gap:1rem;
    margin-top:2rem;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    transition:.3s;
}

.footer-social a:hover{
    background:var(--hp-primary);
    transform:translateY(-4px);
}

.footer-bottom{
    margin-top:4rem;
    padding-top:2rem;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:1rem;
    color:var(--hp-text-muted);
}

@media(max-width:992px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:767px){
    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

/* ==========================================================================
   17. Animation System
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(37,99,235,0);
    }
    50% {
        box-shadow: 0 0 35px rgba(37,99,235,.35);
    }
    100% {
        box-shadow: 0 0 0 rgba(37,99,235,0);
    }
}

/* ==========================================================================
   Hover Effects
   ========================================================================== */

.feature-card,
.stat-card,
.platform-stat,
.metric-card,
.glass-card {
    will-change: transform;
    transform: translateZ(0);
}

.feature-card:hover,
.stat-card:hover,
.platform-stat:hover,
.metric-card:hover,
.glass-card:hover {
    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease;
}

/* ==========================================================================
   Reveal Animation
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

:focus-visible {
    outline: 3px solid rgba(96,165,250,.45);
    outline-offset: 4px;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible {
    border-radius: .5rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.shadow-lg {
    box-shadow: var(--hp-shadow-lg);
}

.rounded-xl {
    border-radius: var(--hp-radius-xl);
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}

/* ==========================================================================
   Scrollbar
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #08111f;
}

::-webkit-scrollbar-thumb {
    background: #1d4ed8;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* ==========================================================================
   Selection
   ========================================================================== */

::selection {
    background: rgba(37,99,235,.35);
    color: white;
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}