/* ============================================
   FinanceHub - Home Page Styles
   Dark Premium Fintech Design
   ============================================ */

/* CSS Variables */
:root {
    --fh-bg-primary: #0a0a0f;
    --fh-bg-secondary: #12121a;
    --fh-bg-tertiary: #1a1a25;
    --fh-bg-card: #15151f;
    --fh-bg-card-hover: #1e1e2a;

    --fh-accent-primary: #6366f1;
    --fh-accent-secondary: #8b5cf6;
    --fh-accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);

    --fh-text-primary: #ffffff;
    --fh-text-secondary: #a1a1aa;
    --fh-text-tertiary: #71717a;

    --fh-success: #10b981;
    --fh-warning: #f59e0b;
    --fh-error: #ef4444;

    --fh-border: rgba(255, 255, 255, 0.08);
    --fh-border-hover: rgba(255, 255, 255, 0.15);

    --fh-radius-sm: 8px;
    --fh-radius-md: 12px;
    --fh-radius-lg: 16px;
    --fh-radius-xl: 24px;

    --fh-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --fh-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --fh-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --fh-shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);

    --fh-font-heading: 'Outfit', sans-serif;
    --fh-font-body: 'Plus Jakarta Sans', sans-serif;

    --fh-transition-fast: 0.15s ease;
    --fh-transition-normal: 0.3s ease;
    --fh-transition-slow: 0.5s ease;
}

/* Reset & Base */
.finance-home {
    font-family: var(--fh-font-body);
    background: var(--fh-bg-primary);
    color: var(--fh-text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

.finance-home * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.finance-home a {
    text-decoration: none;
    color: inherit;
}

.finance-home ul {
    list-style: none;
}

/* Container */
.fh-nav-container,
.fh-section-header,
.fh-services-grid,
.fh-features-container,
.fh-pricing-grid,
.fh-cta-container,
.fh-footer-container {
    max-width: 1280px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    width: 100%;
}

@media (max-width: 768px) {

    .fh-nav-container,
    .fh-section-header,
    .fh-services-grid,
    .fh-features-container,
    .fh-pricing-grid,
    .fh-cta-container,
    .fh-footer-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* Hero Container */
.fh-hero-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .fh-hero-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* Hero Content */
.fh-hero-content {
    flex: 1.2;
    max-width: 650px;
    animation: fadeInUp 0.8s ease-out;
    padding: 40px 0;
    text-align: left;
}

/* ============================================
   Navigation
   ============================================ */
.fh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fh-border);
    padding: 16px 0;
}

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

.fh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fh-font-heading);
    font-weight: 700;
    font-size: 24px;
}

.fh-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fh-accent-gradient);
    border-radius: var(--fh-radius-sm);
    color: white;
}

.fh-logo-icon svg {
    width: 20px;
    height: 20px;
}

.fh-logo-text span {
    color: var(--fh-accent-primary);
}

.fh-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Mobile Menu - Hidden by default, shown on toggle */
@media (max-width: 768px) {
    .fh-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        border-bottom: 1px solid var(--fh-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

    .fh-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .fh-menu li {
        width: 100%;
    }

    .fh-menu-link {
        display: block;
        padding: 14px 20px;
        font-size: 15px;
        border-bottom: 1px solid var(--fh-border);
        color: var(--fh-text-secondary);
    }

    .fh-menu-link:hover {
        color: var(--fh-text-primary);
        background: rgba(255, 255, 255, 0.03);
    }

    .fh-menu-link::after {
        display: none;
    }

    .fh-nav-actions {
        display: none;
    }

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

.fh-menu-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--fh-text-secondary);
    transition: color var(--fh-transition-fast);
    position: relative;
}

.fh-menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fh-accent-primary);
    transition: width var(--fh-transition-normal);
}

.fh-menu-link:hover {
    color: var(--fh-text-primary);
}

.fh-menu-link:hover::after {
    width: 100%;
}

.fh-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fh-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.fh-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fh-text-primary);
    border-radius: 2px;
    transition: var(--fh-transition-fast);
    transform-origin: center;
}

/* ============================================
   Buttons
   ============================================ */
.fh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--fh-font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--fh-radius-md);
    cursor: pointer;
    transition: all var(--fh-transition-normal);
}

.fh-btn-primary {
    background: var(--fh-accent-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.fh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
}

.fh-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--fh-transition-fast);
}

.fh-btn-primary:hover svg {
    transform: translateX(4px);
}

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

.fh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--fh-border-hover);
}

.fh-btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.fh-btn-pricing {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px;
    margin-top: 24px;
}

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

.fh-btn-outline:hover {
    border-color: var(--fh-accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.fh-btn-filled {
    background: var(--fh-accent-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.fh-btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.fh-btn-cta {
    padding: 18px 40px;
    font-size: 17px;
}

/* ============================================
   Hero Section
   ============================================ */
.fh-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 100px;
    overflow: hidden;
}

.fh-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fh-hero-gradient {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    filter: blur(60px);
}

.fh-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.fh-hero-glow {
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    filter: blur(80px);
}

.fh-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    animation: fadeInUp 0.8s ease-out;
    padding: 40px 0;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: var(--fh-text-secondary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.fh-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--fh-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.fh-hero-title {
    font-family: var(--fh-font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.fh-hero-subtitle {
    font-size: 18px;
    color: var(--fh-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.fh-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.fh-hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.fh-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fh-stat-value {
    font-family: var(--fh-font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--fh-text-primary);
}

.fh-stat-label {
    font-size: 14px;
    color: var(--fh-text-tertiary);
}

.fh-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--fh-border);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: var(--fh-text-secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.fh-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--fh-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.fh-hero-title {
    font-family: var(--fh-font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.fh-hero-subtitle {
    font-size: 18px;
    color: var(--fh-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.fh-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.fh-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.fh-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fh-stat-value {
    font-family: var(--fh-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--fh-text-primary);
}

.fh-stat-label {
    font-size: 14px;
    color: var(--fh-text-tertiary);
}

.fh-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--fh-border);
}

/* Hero Visual - Dashboard Preview */
.fh-hero-visual {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 520px;
    animation: fadeInRight 1s ease-out 0.6s both;
    display: flex;
    justify-content: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fh-dashboard-preview {
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-xl);
    overflow: hidden;
    box-shadow: var(--fh-shadow-lg), var(--fh-shadow-glow);
}

.fh-dashboard-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--fh-border);
    background: var(--fh-bg-secondary);
}

.fh-dashboard-dots {
    display: flex;
    gap: 8px;
}

.fh-dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.fh-dashboard-dots span:nth-child(1) {
    background: #ff5f57;
}

.fh-dashboard-dots span:nth-child(2) {
    background: #febc2e;
}

.fh-dashboard-dots span:nth-child(3) {
    background: #28c840;
}

.fh-dashboard-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fh-dashboard-main {
    background: var(--fh-accent-gradient);
    padding: 24px;
    border-radius: var(--fh-radius-md);
}

.fh-dashboard-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fh-dashboard-card {
    background: var(--fh-bg-secondary);
    padding: 20px;
    border-radius: var(--fh-radius-md);
    border: 1px solid var(--fh-border);
}

.fh-card-label {
    display: block;
    font-size: 13px;
    color: var(--fh-text-tertiary);
    margin-bottom: 8px;
}

.fh-card-value {
    display: block;
    font-family: var(--fh-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--fh-text-primary);
}

.fh-card-change {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 8px;
}

.fh-card-change.fh-positive {
    background: rgba(16, 185, 129, 0.15);
    color: var(--fh-success);
}

.fh-dashboard-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    padding: 16px 0;
    border-top: 1px solid var(--fh-border);
}

.fh-chart-bar {
    width: 10%;
    background: var(--fh-accent-gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    animation: growBar 1s ease-out both;
}

.fh-chart-bar:nth-child(1) {
    animation-delay: 0.7s;
}

.fh-chart-bar:nth-child(2) {
    animation-delay: 0.75s;
}

.fh-chart-bar:nth-child(3) {
    animation-delay: 0.8s;
}

.fh-chart-bar:nth-child(4) {
    animation-delay: 0.85s;
}

.fh-chart-bar:nth-child(5) {
    animation-delay: 0.9s;
}

.fh-chart-bar:nth-child(6) {
    animation-delay: 0.95s;
}

.fh-chart-bar:nth-child(7) {
    animation-delay: 1s;
}

.fh-chart-bar:nth-child(8) {
    animation-delay: 1.05s;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* Floating Cards */
.fh-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-md);
    box-shadow: var(--fh-shadow-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fh-float-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.fh-float-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1.5s;
}

.fh-float-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--fh-radius-sm);
    color: var(--fh-accent-primary);
}

.fh-float-icon svg {
    width: 20px;
    height: 20px;
}

.fh-float-text {
    display: flex;
    flex-direction: column;
}

.fh-float-text span {
    font-size: 12px;
    color: var(--fh-text-tertiary);
}

.fh-float-text strong {
    font-family: var(--fh-font-heading);
    font-size: 16px;
    font-weight: 600;
}

.fh-positive {
    color: var(--fh-success) !important;
}

/* ============================================
   Services Section
   ============================================ */
.fh-services {
    padding: 100px 0;
    background: var(--fh-bg-secondary);
}

.fh-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.fh-section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fh-accent-primary);
    margin-bottom: 16px;
}

.fh-section-title {
    font-family: var(--fh-font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.fh-section-subtitle {
    font-size: 18px;
    color: var(--fh-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.fh-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fh-service-card {
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-xl);
    padding: 40px 32px;
    transition: all var(--fh-transition-normal);
    opacity: 0;
    transform: translateY(20px);
}

.fh-service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.fh-service-card:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--fh-shadow-glow);
    background: linear-gradient(180deg, rgba(26, 26, 37, 1) 0%, rgba(21, 21, 31, 1) 100%);
}

.fh-service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    /* Transparent purple */
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--fh-radius-md);
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.05);
}

.fh-service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--fh-accent-secondary);
}

.fh-service-card h3 {
    font-family: var(--fh-font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.fh-service-card p {
    font-size: 15px;
    color: var(--fh-text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.fh-service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--fh-border);
    padding-top: 24px;
}

.fh-service-features span {
    font-size: 14px;
    color: var(--fh-text-secondary);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
}

.fh-service-features span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ============================================
   Features Section
   ============================================ */
.fh-features {
    padding: 100px 0;
    background: var(--fh-bg-primary);
}

.fh-features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.fh-features-content {
    max-width: 500px;
}

.fh-features-desc {
    font-size: 17px;
    color: var(--fh-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.fh-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fh-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fh-feature-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.fh-feature-check svg {
    width: 14px;
    height: 14px;
    color: var(--fh-success);
}

.fh-feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.fh-feature-text span {
    font-size: 14px;
    color: var(--fh-text-secondary);
}

.fh-features-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fh-feature-card-large {
    width: 100%;
    height: 100%;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-xl);
    position: relative;
    overflow: hidden;
}

.fh-floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--fh-bg-secondary);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-md);
    animation: float 4s ease-in-out infinite;
}

.fh-floating-element .fh-el-icon {
    font-size: 28px;
}

.fh-floating-element span {
    font-size: 12px;
    font-weight: 500;
    color: var(--fh-text-secondary);
}

.fh-float-el-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.fh-float-el-2 {
    top: 45%;
    right: 10%;
    animation-delay: 2s;
}

.fh-float-el-3 {
    bottom: 15%;
    left: 30%;
    animation-delay: 1s;
}

/* ============================================
   Pricing Section
   ============================================ */
.fh-pricing {
    padding: 100px 0;
    background: var(--fh-bg-secondary);
}

.fh-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 60px auto 0;
    width: 100%;
}

.fh-pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    position: relative;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-xl);
    padding: 40px;
    transition: all var(--fh-transition-normal);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.fh-pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.fh-pricing-pro {
    border-color: var(--fh-accent-primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--fh-bg-card) 100%);
}

.fh-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: var(--fh-bg-tertiary);
    border: 1px solid var(--fh-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--fh-text-secondary);
    white-space: nowrap;
}

.fh-pricing-badge-pro {
    background: var(--fh-accent-gradient);
    border-color: transparent;
    color: white;
}

.fh-pricing-header h3 {
    font-family: var(--fh-font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fh-pricing-header p {
    font-size: 15px;
    color: var(--fh-text-secondary);
    margin-bottom: 24px;
}

.fh-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.fh-price-currency {
    font-size: 24px;
    font-weight: 500;
    color: var(--fh-text-secondary);
}

.fh-price-amount {
    font-family: var(--fh-font-heading);
    font-size: 56px;
    font-weight: 800;
    background: var(--fh-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fh-price-period {
    font-size: 16px;
    color: var(--fh-text-tertiary);
}

.fh-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fh-pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.fh-pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--fh-success);
    flex-shrink: 0;
}

.fh-pricing-feature-disabled {
    color: var(--fh-text-tertiary);
}

.fh-pricing-feature-disabled svg {
    color: var(--fh-text-tertiary);
}

/* ============================================
   CTA Section
   ============================================ */
.fh-cta {
    padding: 80px 0;
    background: var(--fh-bg-primary);
}

.fh-cta-container {
    position: relative;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-xl);
    padding: 60px;
    text-align: center;
    overflow: hidden;
}

.fh-cta-content {
    position: relative;
    z-index: 1;
}

.fh-cta-content h2 {
    font-family: var(--fh-font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.fh-cta-content p {
    font-size: 18px;
    color: var(--fh-text-secondary);
    margin-bottom: 32px;
}

.fh-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

/* ============================================
   Footer
   ============================================ */
.fh-footer {
    background: var(--fh-bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--fh-border);
}

.fh-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.fh-footer-brand .fh-logo {
    margin-bottom: 16px;
}

.fh-footer-brand p {
    font-size: 15px;
    color: var(--fh-text-secondary);
    max-width: 300px;
}

.fh-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fh-footer-col h4 {
    font-family: var(--fh-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--fh-text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fh-footer-col a {
    display: block;
    font-size: 14px;
    color: var(--fh-text-secondary);
    padding: 6px 0;
    transition: color var(--fh-transition-fast);
}

.fh-footer-col a:hover {
    color: var(--fh-accent-primary);
}

.fh-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--fh-border);
}

.fh-footer-bottom p {
    font-size: 14px;
    color: var(--fh-text-tertiary);
}

.fh-footer-social {
    display: flex;
    gap: 16px;
}

.fh-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fh-bg-tertiary);
    border-radius: var(--fh-radius-sm);
    font-size: 16px;
    transition: all var(--fh-transition-fast);
}

.fh-footer-social a:hover {
    background: var(--fh-accent-primary);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .fh-hero-container {
        max-width: 1200px;
        padding: 0 40px;
        gap: 50px;
    }

    .fh-hero-content {
        max-width: 700px;
    }

    .fh-hero-visual {
        width: 480px;
    }

    .fh-float-1 {
        left: -30px;
    }

    .fh-float-2 {
        right: -20px;
    }
}

/* Laptop/MacBook 13-16 inch */
@media (min-width: 1201px) and (max-width: 1400px) {
    .fh-hero-container {
        padding: 0 32px;
    }

    .fh-hero-title {
        font-size: 46px;
    }

    .fh-hero-subtitle {
        font-size: 17px;
    }

    .fh-hero-visual {
        width: 420px;
    }

    .fh-dashboard-preview {
        transform: scale(0.85);
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .fh-hero-container {
        padding: 0 24px;
        flex-direction: column;
        text-align: center;
    }

    .fh-hero-visual {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        transform: none !important;
        animation: fadeInUp 1s ease-out 0.6s both;
        margin-top: 40px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .fh-hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .fh-hero-actions {
        justify-content: center;
    }

    .fh-hero-stats {
        justify-content: center;
    }

    .fh-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fh-features-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fh-features-content {
        max-width: 100%;
        text-align: center;
    }

    .fh-features-list {
        align-items: center;
    }

    .fh-pricing-grid {
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Responsive Design Refactor */

/* Large Laptops */
@media (max-width: 1200px) {
    .fh-hero-container {
        flex-direction: column;
        text-align: center;
        padding-left: 24px !important;
        padding-right: 24px !important;
        gap: 60px;
    }

    .fh-hero-content {
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fh-hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .fh-hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .fh-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .fh-services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .fh-features-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fh-features-list {
        align-items: center;
    }

    .fh-features-visual {
        height: 350px;
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .fh-hero {
        padding: 120px 0 60px;
    }

    .fh-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

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

    .fh-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .fh-stat-divider {
        display: none;
    }

    .fh-section-title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .fh-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .fh-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fh-footer-links {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 32px;
    }

    .fh-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .fh-footer-social {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .fh-nav-container,
    .fh-hero-content,
    .fh-section-header,
    .fh-features-container,
    .fh-pricing-grid,
    .fh-cta-container,
    .fh-footer-container {
        padding: 0 16px;
    }

    .fh-hero-title {
        font-size: 28px;
    }

    .fh-hero-subtitle {
        font-size: 14px;
    }

    .fh-hero-stats {
        gap: 12px;
    }

    .fh-stat-value {
        font-size: 20px;
    }

    .fh-stat-label {
        font-size: 12px;
    }

    .fh-section-title {
        font-size: 24px;
    }

    .fh-section-subtitle {
        font-size: 14px;
    }

    .fh-service-card {
        padding: 16px;
    }

    .fh-service-icon {
        width: 40px;
        height: 40px;
    }

    .fh-service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .fh-service-card p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .fh-service-features span {
        font-size: 12px;
    }

    .fh-pricing-card {
        padding: 20px 16px;
    }

    .fh-pricing-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .fh-price-amount {
        font-size: 40px;
    }

    .fh-price-currency {
        font-size: 18px;
    }

    .fh-pricing-feature {
        font-size: 13px;
        gap: 8px;
    }

    .fh-pricing-feature svg {
        width: 16px;
        height: 16px;
    }

    .fh-cta-container {
        border-radius: var(--fh-radius-lg);
    }

    .fh-cta-content h2 {
        font-size: 20px;
    }

    .fh-features-visual {
        height: 200px;
    }

    .fh-floating-element {
        padding: 8px 12px;
    }

    .fh-floating-element .fh-el-icon {
        font-size: 20px;
    }

    .fh-floating-element span {
        font-size: 10px;
    }

    .fh-footer-col h4 {
        font-size: 12px;
    }

    .fh-footer-col a {
        font-size: 13px;
    }

    .fh-footer-social a {
        width: 32px;
        height: 32px;
    }
}

/* Extra small - very old phones */
@media (max-width: 360px) {
    .fh-hero-title {
        font-size: 24px;
    }

    .fh-price-amount {
        font-size: 36px;
    }

    .fh-section-title {
        font-size: 22px;
    }
}