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

/* Enhanced Typography System */
html {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-base { font-size: 1rem; line-height: 1.7; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-2xl { font-size: 1.5rem; line-height: 1.5; }
.text-3xl { font-size: 1.875rem; line-height: 1.4; }
.text-4xl { font-size: 2.25rem; line-height: 1.3; }
.text-5xl { font-size: 3rem; line-height: 1.2; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Line Heights */
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Letter Spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Enhanced animations and transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(13, 148, 136, 0.6);
    }
}




:root {
    /* Peacock-Inspired Color Palette */
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-gray: #1a1a1a;
    --secondary-gray: #2a2a2a;
    --tertiary-gray: #3a3a3a;
    
    /* Peacock Accent Colors */
    --accent-teal: #0d9488;        /* Deep teal - primary peacock color */
    --accent-teal-light: #14b8a6;  /* Lighter teal for highlights */
    --accent-teal-dark: #0f766e;   /* Darker teal for depth */
    --accent-blue: #1e40af;        /* Deep navy blue */
    --accent-blue-light: #3b82f6;  /* Bright blue */
    --accent-green: #059669;       /* Forest green */
    --accent-green-light: #10b981; /* Emerald green */
    --accent-gold: #d97706;        /* Golden accent */
    --accent-gold-light: #f59e0b;  /* Light gold */
    --accent-purple: #7c3aed;      /* Deep purple */
    --accent-cyan: #0891b2;        /* Aqua/cyan */
    
    /* Neutral Grays */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-dark: #000000;
    --bg-dark-secondary: #0a0a0a;
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #525252;
    --text-tertiary: #737373;
    --text-white: #ffffff;
    --text-muted: #a3a3a3;
    
    /* Border Colors */
    --border-light: #e5e5e5;
    --border-medium: #d4d4d4;
    --border-dark: #404040;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Spacing Scale */
    --space-0: 0;
    --space-px: 1px;
    --space-0-5: 0.125rem;  /* 2px */
    --space-1: 0.25rem;     /* 4px */
    --space-1-5: 0.375rem;  /* 6px */
    --space-2: 0.5rem;      /* 8px */
    --space-2-5: 0.625rem;  /* 10px */
    --space-3: 0.75rem;     /* 12px */
    --space-3-5: 0.875rem;  /* 14px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-7: 1.75rem;     /* 28px */
    --space-8: 2rem;        /* 32px */
    --space-9: 2.25rem;     /* 36px */
    --space-10: 2.5rem;     /* 40px */
    --space-11: 2.75rem;    /* 44px */
    --space-12: 3rem;       /* 48px */
    --space-14: 3.5rem;     /* 56px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    --space-24: 6rem;       /* 96px */
    --space-28: 7rem;       /* 112px */
    --space-32: 8rem;       /* 128px */
    --space-36: 9rem;       /* 144px */
    --space-40: 10rem;      /* 160px */
    --space-44: 11rem;      /* 176px */
    --space-48: 12rem;      /* 192px */
    --space-52: 13rem;      /* 208px */
    --space-56: 14rem;      /* 224px */
    --space-60: 15rem;      /* 240px */
    --space-64: 16rem;      /* 256px */
    --space-72: 18rem;      /* 288px */
    --space-80: 20rem;      /* 320px */
    --space-96: 24rem;      /* 384px */
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-normal: 250ms ease-out;
    --transition-slow: 350ms ease-out;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Base Typography */
html {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.brand-logo {
    display: flex !important;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 40px;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    display: block !important;
    flex-shrink: 0;
    border: none;
    min-width: 28px;
    min-height: 28px;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 6px;
    width: 20px;
    height: 12px;
    border: 2px solid white;
    border-bottom: none;
    border-radius: 2px 2px 0 0;
    display: block !important;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 8px;
    border: 2px solid white;
    border-bottom: none;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: block !important;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 50%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    display: block !important;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
}

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

.brand-logo:hover .brand-text {
    transform: scale(1.02);
}

/* Gradient text class for Revenli branding */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 50%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    font-weight: 700;
    /* Fallback color for better visibility */
    color: var(--accent-teal);
}

/* Enhanced gradient text with background box for better visibility */
.gradient-text-box {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 50%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 700;
    padding: var(--space-1) var(--space-3);
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(13, 148, 136, 0.2);
    /* Fallback color for better visibility */
    color: var(--accent-teal);
}

/* Special styling for Revenli in CTA sections with dark backgrounds */
.gradient-text-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 700;
    padding: var(--space-1) var(--space-3);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Fallback color for better visibility */
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Debug styles to ensure logo visibility */
.nav-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-logo a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: var(--text-white);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-teal-dark) 0%, var(--accent-blue) 100%);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: var(--space-32) 0 var(--space-24);
    background: #ffffff;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.4) 100%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(13, 148, 136, 0.02) 50%, transparent 70%);
    animation: shimmer 6s ease-in-out infinite;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-6);
    animation: scaleIn 0.8s ease-out 0.5s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-8);
    animation: fadeInUp 1s ease-out 0.7s both;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-10);
    animation: fadeInUp 1s ease-out 0.9s both;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    animation: fadeInUp 1s ease-out 1.1s both;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    animation: fadeInUp 1s ease-out 1.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 50%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.property-summary-card {
    width: 100%;
    max-width: 350px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    to {
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.property-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.property-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.house-icon {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    border: 1px solid #e5e7eb;
}

/* Realistic House Icon */
.realistic-house {
    background: #f8fafc;
    position: relative;
    overflow: visible;
    border: 1px solid #e5e7eb;
    display: block;
    width: 100%;
    height: 100%;
}

.realistic-house::before {
    content: '🏠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 2;
}

.property-info {
    flex: 1;
}

.property-address {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.2;
}

.property-location {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.2;
}

.profitability-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.profitability-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
}

.profit-icon {
    font-size: 16px;
}

.profitability-indicator span {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.financial-summary {
    display: flex;
    gap: 24px;
}

.metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.amount {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.financial-summary .amount {
    font-size: 12px;
    font-weight: 600;
}

.change {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
}

.change.positive {
    color: #059669;
    background: #d1fae5;
}

.metric-card {
    text-align: center;
    padding: var(--space-4);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.metric-card:nth-child(1) {
    animation-delay: 0.1s;
}

.metric-card:nth-child(2) {
    animation-delay: 0.2s;
}

.metric-card:nth-child(3) {
    animation-delay: 0.3s;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.metric-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    animation: countUp 1s ease-out 0.5s both;
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Intelligent General Ledger Styles */
.intelligent-ledger {
    padding: var(--space-24) 0;
    background: var(--bg-primary);
}

.ledger-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.ledger-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.ledger-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.ledger-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.ledger-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 1rem;
    color: var(--text-secondary);
}

.ledger-feature i {
    color: var(--accent-teal);
    font-size: 1.125rem;
}

.dashboard-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    animation: slideInRight 0.8s ease-out, float 6s ease-in-out infinite 1s, glow 4s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

@keyframes glow {
    from {
        box-shadow: var(--shadow-lg);
    }
    to {
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), var(--shadow-lg);
    }
}

.dashboard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
    animation: fadeInDown 0.6s ease-out 0.3s both;
    position: relative;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expense-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.category-expanded {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: slideInLeft 0.6s ease-out 0.7s both;
    transition: all 0.3s ease;
}

.category-expanded:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

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

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-light);
}

.category-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
    color: var(--text-primary);
}

.category-info i {
    transition: all 0.3s ease;
}

.category-info:hover i {
    transition: all 0.3s ease;
    transform: scale(1.2);
}

.category-total {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--text-primary);
}

.transaction-list {
    padding: var(--space-4);
}

.transaction-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    font-size: 0.875rem;
    animation: fadeInScale 0.4s ease-out both;
    transition: all 0.3s ease;
}

.transaction-item:nth-child(1) {
    animation-delay: 0.9s;
}

.transaction-item:nth-child(2) {
    animation-delay: 1.0s;
}

.transaction-item:nth-child(3) {
    animation-delay: 1.1s;
}

.transaction-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(4px);
    border-radius: var(--radius-md);
    padding-left: var(--space-2);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-desc {
    color: var(--text-primary);
    font-weight: 500;
}

.transaction-date {
    color: var(--text-tertiary);
}

.transaction-amount {
    color: var(--accent-gold);
    font-weight: 600;
}

.transaction-category {
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.75rem;
}

.transaction-receipt {
    color: var(--accent-teal);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.category-collapsed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out both;
    position: relative;
    overflow: hidden;
}

.category-collapsed:nth-child(2) {
    animation-delay: 1.2s;
}

.category-collapsed:nth-child(3) {
    animation-delay: 1.3s;
}

.category-collapsed:nth-child(4) {
    animation-delay: 1.4s;
}

.category-collapsed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-collapsed:hover::before {
    left: 100%;
}

.category-collapsed:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-blue);
}

/* Property Lifecycle Section */
.property-lifecycle {
    padding: var(--space-24) 0;
    background: var(--bg-primary);
}

/* Scroll animation classes */
.lifecycle-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.lifecycle-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.lifecycle-visual {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.lifecycle-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.lifecycle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.lifecycle-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.lifecycle-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.lifecycle-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.lifecycle-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.lifecycle-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 1rem;
    color: var(--text-secondary);
}

.lifecycle-feature i {
    color: var(--accent-teal);
    font-size: 1.125rem;
}

.timeline-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
    animation: float 6s ease-in-out infinite 2s;
}

.timeline-container.animate {
    opacity: 1;
    transform: scale(1);
}

@keyframes float {
    0%, 100% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1) translateY(-10px);
    }
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease-out;
}

.timeline-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-teal), var(--accent-blue), var(--accent-green), var(--accent-gold));
    border-radius: var(--radius-full);
}

.timeline-event {
    position: relative;
    margin-bottom: var(--space-6);
    padding-left: 60px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.timeline-event.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-event:nth-child(1) {
    transition-delay: 0.1s;
}

.timeline-event:nth-child(2) {
    transition-delay: 0.2s;
}

.timeline-event:nth-child(3) {
    transition-delay: 0.3s;
}

.timeline-event:nth-child(4) {
    transition-delay: 0.4s;
}

.timeline-event:last-child {
    margin-bottom: 0;
}

.event-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    color: var(--text-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease-out;
    transition: all 0.3s ease;
}

/* Different colors for each event year */
.timeline-event:nth-child(1) .event-year {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-dark));
}

.timeline-event:nth-child(2) .event-year {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
}

.timeline-event:nth-child(3) .event-year {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light));
}

.timeline-event:nth-child(4) .event-year {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
}

.event-year.animate {
    opacity: 1;
    transform: scale(1);
}

.event-details {
    background: var(--bg-secondary);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

/* Color-coded borders for event details */
.timeline-event:nth-child(1) .event-details {
    border-left: 4px solid var(--accent-teal);
}

.timeline-event:nth-child(2) .event-details {
    border-left: 4px solid var(--accent-gold);
}

.timeline-event:nth-child(3) .event-details {
    border-left: 4px solid var(--accent-blue);
}

.timeline-event:nth-child(4) .event-details {
    border-left: 4px solid var(--accent-green);
}

.event-details.animate {
    opacity: 1;
    transform: translateY(0);
}

.event-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.event-details:hover::before {
    left: 100%;
}

.event-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.event-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    font-size: 1rem;
}

/* Color-coded event titles */
.timeline-event:nth-child(1) .event-title {
    color: var(--accent-teal);
}

.timeline-event:nth-child(2) .event-title {
    color: var(--accent-gold);
}

.timeline-event:nth-child(3) .event-title {
    color: var(--accent-blue);
}

.timeline-event:nth-child(4) .event-title {
    color: var(--accent-green);
}

.event-info {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
}

.event-docs {
    color: var(--accent-teal);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Goal Tracking Section */
.goal-tracking {
    padding: var(--space-24) 0;
    background: var(--bg-secondary);
}

.goals-demo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.goal-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    animation: slideInRight 0.8s ease-out, float 6s ease-in-out infinite 1s, glow 4s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    animation: fadeInDown 0.6s ease-out 0.3s both;
    position: relative;
}

.goal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.goal-card:hover .goal-header h3 {
    color: var(--accent-teal);
}

.goal-update {
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    transition: all 0.3s ease;
}

.goal-update::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s ease;
}

.goal-update:hover {
    color: var(--accent-teal-dark);
}

.goal-update:hover::after {
    width: 100%;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: var(--slate-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-6);
    animation: slideInLeft 0.6s ease-out 0.7s both;
    transition: all 0.3s ease;
}

.progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1.5s ease-in-out;
    position: relative;
    animation: fadeInScale 0.4s ease-out both;
}

.progress-handle {
    position: absolute;
    top: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: left 1.5s ease-in-out;
    transition: all 0.3s ease;
}

.goal-description {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.goal-description i {
    margin-top: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.goal-description span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.goal-card:hover .goal-description span {
    color: var(--text-secondary);
}

/* Staggered animation for multiple cards */
.goal-card:nth-child(1) {
    animation-delay: 0.1s;
}

.goal-card:nth-child(2) {
    animation-delay: 0.3s;
}

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes glow {
    from {
        box-shadow: var(--shadow-lg);
    }
    to {
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.goal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.goal-update {
    color: var(--accent-blue);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.goal-update:hover {
    color: var(--accent-blue-dark);
}

.progress-bar {
    position: relative;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.goal-description {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.goal-description i {
    margin-top: 2px;
    flex-shrink: 0;
}

.goal-description strong {
    font-weight: 600;
}

/* Key Features Section */
.key-features {
    padding: var(--space-24) 0;
    background: var(--bg-secondary);
}


.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.features-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.feature-preview-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-8);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s ease-out;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-preview-card:nth-child(1) {
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

.feature-preview-card:nth-child(2) {
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.feature-preview-card:nth-child(3) {
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.feature-preview-card:nth-child(4) {
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
}

.feature-preview-card:nth-child(5) {
    animation-delay: 0.9s;
    animation-fill-mode: forwards;
}

.feature-preview-card:nth-child(6) {
    animation-delay: 1.1s;
    animation-fill-mode: forwards;
}

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

.feature-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(13, 148, 136, 0.3);
    background: rgba(255, 255, 255, 0.85);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: var(--radius-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 1.75rem;
    color: var(--accent-teal);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-preview-card:hover .feature-icon::before {
    left: 100%;
}

.feature-preview-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.25);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
}

/* Specific icon styling for Why Revenli Wins */
.feature-icon .fa-cogs {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-icon .fa-calculator {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-icon .fa-chart-line {
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

/* Icon animations on hover */
.feature-icon:hover .fa-cogs {
    animation: rotate 3s linear infinite;
}

.feature-icon:hover .fa-calculator {
    transition: all 0.3s ease;
}

.feature-icon:hover .fa-chart-line {
    animation: float 2s ease-in-out infinite;
}

/* About page specific icon styling */
.feature-icon .fa-exclamation-triangle {
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.feature-icon .fa-dollar-sign {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-icon .fa-clock {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-icon .fa-check-circle {
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.feature-icon .fa-users {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-icon .fa-building {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-icon .fa-bullseye {
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.feature-icon .fa-robot {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

/* About page icon animations on hover */
.feature-icon:hover .fa-exclamation-triangle {
    transition: all 0.3s ease;
}

.feature-icon:hover .fa-dollar-sign {
    animation: bounce 2s ease-in-out infinite;
}

.feature-icon:hover .fa-clock {
    animation: rotate 3s linear infinite;
}

.feature-icon:hover .fa-check-circle {
    transition: all 0.3s ease;
}

.feature-icon:hover .fa-users {
    animation: float 2s ease-in-out infinite;
}

.feature-icon:hover .fa-building {
    transition: all 0.3s ease;
}

.feature-icon:hover .fa-bullseye {
    transition: all 0.3s ease;
}

.feature-icon:hover .fa-robot {
    animation: float 2s ease-in-out infinite;
}

/* Competitive section icons */
.competitive-features .fa-times {
    color: #ef4444;
    transition: all 0.3s ease;
}

.competitive-features .fa-check {
    color: var(--accent-green);
    transition: all 0.3s ease;
}

/* Competitive section icon animations on hover */
.competitive-features:hover .fa-times {
    animation: shake 0.5s ease-in-out infinite;
}

.competitive-features:hover .fa-check {
    transition: all 0.3s ease;
}

/* Contact page specific icon styling */
.feature-icon .fa-envelope {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-icon .fa-calendar {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

/* Contact page icon animations on hover */
.feature-icon:hover .fa-envelope {
    transition: all 0.3s ease;
}

.feature-icon:hover .fa-calendar {
    animation: float 2s ease-in-out infinite;
}

/* Product page specific icon styling */
.feature-icon .fa-file-invoice {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-icon .fa-balance-scale {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-icon .fa-chart-pie {
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.feature-icon .fa-rocket {
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.feature-icon .fa-percentage {
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.feature-icon .fa-handshake {
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

/* Built by Investors section icon styling */
.feature-icon .fa-users {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-icon .fa-code {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-icon .fa-heart {
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

/* Product page icon animations on hover */
.feature-icon:hover .fa-file-invoice {
    animation: documentFloat 3s ease-in-out infinite;
}

.feature-icon:hover .fa-balance-scale {
    animation: balanceSway 2.5s ease-in-out infinite;
}

.feature-icon:hover .fa-chart-pie {
    animation: chartRotate 4s linear infinite;
}

.feature-icon:hover .fa-rocket {
    animation: rocketLaunch 2s ease-in-out infinite;
}

.feature-icon:hover .fa-percentage {
    animation: percentagePulse 2s ease-in-out infinite;
}

.feature-icon:hover .fa-handshake {
    animation: handshakeShake 2.5s ease-in-out infinite;
}

/* Built by Investors section icon hover animations */
.feature-icon:hover .fa-users {
    animation: float 2s ease-in-out infinite;
}

.feature-icon:hover .fa-code {
    animation: rotate 3s linear infinite;
}

.feature-icon:hover .fa-heart {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes documentFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes balanceSway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

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

@keyframes rocketLaunch {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes percentagePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes handshakeShake {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
}

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

.feature-preview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.feature-preview-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Competitive Section */
.competitive {
    padding: var(--space-24) 0;
    background: var(--bg-primary);
}

.competitive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.competitive-card {
    background: var(--bg-primary);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition-normal);
}

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

.competitive-card.revenli {
    border-color: var(--accent-teal);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(13, 148, 136, 0.02) 100%);
}

.competitive-card.revenli::before {
    content: '✓';
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 24px;
    height: 24px;
    background: var(--accent-teal);
    color: var(--text-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.competitive-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.competitive-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.competitive-features {
    list-style: none;
}

.competitive-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.competitive-features li:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.competitive-features li i {
    color: var(--accent-teal);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.competitive-features li:hover i {
    color: var(--accent-blue);
    transform: scale(1.1);
}

/* Specific icon styling */
.competitive-features .fa-robot {
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.competitive-features .fa-calculator {
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.competitive-features .fa-chart-line {
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.competitive-features:hover .fa-robot {
    transition: all 0.3s ease;
}

.competitive-features:hover .fa-calculator {
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.competitive-features:hover .fa-chart-line {
    animation: pulse 2s ease-in-out infinite 1s;
}

/* CTA Section */
.cta {
    padding: var(--space-24) 0;
    background: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
}

.cta p {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.cta .btn-primary {
    background: var(--accent-teal);
    color: var(--text-white);
}

.cta .btn-primary:hover {
    background: var(--accent-teal-dark);
    color: var(--text-white);
    transform: translateY(-1px);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--gray-600);
}

.cta .btn-secondary:hover {
    background: var(--gray-800);
    border-color: var(--text-white);
}

/* Footer */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
    text-align: center;
    color: white;
    font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

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

/* Utility Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        min-height: 100vh;
        padding: var(--space-8) 0;
    }
    
    .hero-title {
        font-size: 3rem;
        white-space: normal;
    }
    
    .ledger-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .ledger-text h2 {
        font-size: 2rem;
    }
    
    .dashboard-container {
        padding: var(--space-4);
    }
    
    .transaction-item {
        grid-template-columns: 1fr;
        gap: var(--space-2);
        text-align: left;
    }
    
    .transaction-item > div {
        padding: var(--space-1) 0;
    }
    
    .lifecycle-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: var(--space-20) 0 var(--space-16);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    .hero-description {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: var(--space-8);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: var(--space-5);
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .feature-preview-card h3 {
        font-size: 1.125rem;
        margin-bottom: var(--space-4);
    }
    
    .feature-preview-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .property-summary-card {
        max-width: 280px;
        margin: 0 var(--space-2);
        padding: 16px;
    }
    
    .property-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .property-image {
        width: 36px;
        height: 36px;
    }
    
    .property-address {
        font-size: 14px;
    }
    
    .property-location {
        font-size: 12px;
    }
    
    .profitability-section {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .profitability-indicator {
        padding: 6px 8px;
    }
    
    .profitability-indicator span {
        font-size: 12px;
    }
    
    .financial-summary {
        gap: 16px;
    }
    
    .amount {
        font-size: 14px;
    }
    
    .change {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .house-icon::before {
        font-size: 10px;
    }
    
    .goals-demo {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .goal-card {
        padding: var(--space-4);
    }
    
    .goal-header h3 {
        font-size: 1.125rem;
    }
    
    .features-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .competitive-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-event {
        padding-left: 50px;
    }
    
    .event-year {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .timeline::before {
        left: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    color: white;
    border: none;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    animation: glow 2s ease-in-out infinite;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* Modern UI Components */

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    color: var(--accent-teal);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-teal);
    background: rgba(13, 148, 136, 0.1);
}

/* Modern Hero Section */
.hero {
    padding: var(--space-32) 0 var(--space-24);
    background: #ffffff;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

/* Enhanced Feature Cards */
.feature-preview-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-preview-card:hover::before {
    opacity: 1;
}

.feature-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(13, 148, 136, 0.3);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border-radius: var(--radius-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 1.75rem;
    color: var(--accent-teal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-preview-card:hover .feature-icon::before {
    left: 100%;
}

.feature-preview-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.25);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    border-radius: 2px;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Modern Stats Cards */
.stat {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: var(--space-2);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modern CTA Section */
.cta {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: white;
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 8s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Form Elements */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}

/* Modern Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: white;
}

.footer-section p {
    color: white;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-2);
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: var(--space-2);
}

.footer-section a:hover {
    color: var(--accent-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    opacity: 0.9;
}

/* Enhanced Spacing Utilities */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }
.m-10 { margin: var(--space-10); }
.m-12 { margin: var(--space-12); }
.m-16 { margin: var(--space-16); }
.m-20 { margin: var(--space-20); }
.m-24 { margin: var(--space-24); }
.m-32 { margin: var(--space-32); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }
.p-16 { padding: var(--space-16); }
.p-20 { padding: var(--space-20); }
.p-24 { padding: var(--space-24); }
.p-32 { padding: var(--space-32); }

/* Enhanced Typography Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.font-serif { font-family: Georgia, 'Times New Roman', serif; }
.font-mono { font-family: var(--font-mono); }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* Enhanced Readability */
.readable {
    max-width: 65ch;
    line-height: 1.7;
    font-size: 1.125rem;
}

.readable-sm {
    max-width: 60ch;
    line-height: 1.6;
    font-size: 1rem;
}

.readable-lg {
    max-width: 70ch;
    line-height: 1.8;
    font-size: 1.25rem;
}

/* Enhanced Focus States */
.focus\:ring:focus {
    outline: 2px solid var(--accent-teal);
    outline-offset: 2px;
}

.focus\:ring-inset:focus {
    outline: 2px solid var(--accent-teal);
    outline-offset: -2px;
}

/* Enhanced Selection */
::selection {
    background-color: var(--accent-teal);
    color: white;
}

::-moz-selection {
    background-color: var(--accent-teal);
    color: white;
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Enhanced List Typography */
ul, ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

li {
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

/* Enhanced Link Typography */
a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Enhanced Blockquote Typography */
blockquote {
    border-left: 4px solid var(--accent-teal);
    padding-left: var(--space-6);
    margin: var(--space-8) 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Enhanced Code Typography */
code {
    font-family: var(--font-mono);
    background-color: var(--bg-light);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--accent-teal);
}

pre {
    background-color: var(--bg-light);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: var(--space-6) 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
}

pre code {
    background: none;
    padding: 0;
    color: var(--text-primary);
}

/* Enhanced Table Typography */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
    font-size: 0.875rem;
}

th, td {
    padding: var(--space-3) var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

th {
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

td {
    color: var(--text-secondary);
}

/* Enhanced Small Text */
small {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Enhanced Mark/Highlight */
mark {
    background-color: rgba(13, 148, 136, 0.2);
    color: var(--text-primary);
    padding: var(--space-0-5) var(--space-1);
    border-radius: var(--radius-sm);
}

/* Enhanced Subscript/Superscript */
sub, sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Pricing Section */
.pricing {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-primary) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-teal);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-1);
}

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

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: var(--space-8);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--accent-green);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
}

.btn-outline:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card:hover {
        transform: translateY(-2px);
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* Modern FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-teal);
}

.faq-item.active {
    border-color: var(--accent-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4 {
    color: var(--accent-teal);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--accent-teal);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }
}