:root {
    --northernlawyer-primary: #0066ff;
    --northernlawyer-primary-light: #4d94ff;
    --northernlawyer-primary-dark: #0052cc;
    --northernlawyer-secondary: #00d4aa;
    --northernlawyer-secondary-light: #4de0c4;
    --northernlawyer-secondary-dark: #00b894;
    --northernlawyer-accent: #ff6b35;
    --northernlawyer-accent-light: #ff8a5c;
    --northernlawyer-accent-dark: #e55a2b;
    --northernlawyer-neutral-0: #ffffff;
    --northernlawyer-neutral-50: #f8fafc;
    --northernlawyer-neutral-100: #f1f5f9;
    --northernlawyer-neutral-200: #e2e8f0;
    --northernlawyer-neutral-300: #cbd5e1;
    --northernlawyer-neutral-400: #94a3b8;
    --northernlawyer-neutral-500: #64748b;
    --northernlawyer-neutral-600: #475569;
    --northernlawyer-neutral-700: #334155;
    --northernlawyer-neutral-800: #1e293b;
    --northernlawyer-neutral-900: #0f172a;
    --northernlawyer-gradient-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --northernlawyer-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --northernlawyer-gradient-primary: linear-gradient(135deg, #0066ff 0%, #4d94ff 100%);
    --northernlawyer-gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #4de0c4 100%);
    --northernlawyer-gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8a5c 100%);
    --northernlawyer-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --northernlawyer-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --northernlawyer-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --northernlawyer-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --northernlawyer-spacing-xs: 0.5rem;
    --northernlawyer-spacing-sm: 0.75rem;
    --northernlawyer-spacing-md: 1rem;
    --northernlawyer-spacing-lg: 1.5rem;
    --northernlawyer-spacing-xl: 2rem;
    --northernlawyer-spacing-2xl: 3rem;
    --northernlawyer-spacing-3xl: 4rem;
    --northernlawyer-spacing-4xl: 6rem;
    --northernlawyer-border-radius-sm: 0.375rem;
    --northernlawyer-border-radius-md: 0.5rem;
    --northernlawyer-border-radius-lg: 0.75rem;
    --northernlawyer-border-radius-xl: 1rem;
    --northernlawyer-border-radius-2xl: 1.5rem;
    --northernlawyer-transition-fast: 0.15s ease;
    --northernlawyer-transition-normal: 0.3s ease;
    --northernlawyer-transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--northernlawyer-neutral-700);
    background: var(--northernlawyer-gradient-bg);
    overflow-x: hidden;
}

.northernlawyer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--northernlawyer-spacing-xl);
}

.northernlawyer-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--northernlawyer-neutral-200);
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-nav {
    padding: var(--northernlawyer-spacing-md) 0;
}

.northernlawyer-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--northernlawyer-spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.northernlawyer-logo {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-md);
    text-decoration: none;
    color: var(--northernlawyer-neutral-900);
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-logo:hover {
    transform: translateY(-2px);
}

.northernlawyer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--northernlawyer-gradient-primary);
    border-radius: var(--northernlawyer-border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--northernlawyer-transition-normal);
    animation: shine 3s ease-in-out infinite;
}

.northernlawyer-logo-icon svg {
    width: 24px;
    height: 24px;
}

.northernlawyer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.northernlawyer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--northernlawyer-primary);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.northernlawyer-logo-subtitle {
    font-size: 0.75rem;
    color: var(--northernlawyer-neutral-600);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.northernlawyer-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--northernlawyer-spacing-2xl);
    align-items: center;
}

.northernlawyer-nav-link {
    text-decoration: none;
    color: var(--northernlawyer-neutral-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--northernlawyer-transition-normal);
    position: relative;
    padding: var(--northernlawyer-spacing-sm) 0;
}

.northernlawyer-nav-link:hover,
.northernlawyer-nav-link.active {
    color: var(--northernlawyer-primary);
}

.northernlawyer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--northernlawyer-gradient-primary);
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-nav-link:hover::after,
.northernlawyer-nav-link.active::after {
    width: 100%;
}

.northernlawyer-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.northernlawyer-nav-bar {
    width: 25px;
    height: 3px;
    background: var(--northernlawyer-neutral-600);
    border-radius: 2px;
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-hero {
    background: var(--northernlawyer-gradient-hero);
    color: var(--northernlawyer-neutral-0);
    padding: 140px var(--northernlawyer-spacing-xl) 100px;
    position: relative;
    overflow: hidden;
}

.northernlawyer-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.northernlawyer-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.northernlawyer-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.northernlawyer-hero-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.northernlawyer-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 6s ease-in-out infinite;
}

.northernlawyer-shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.northernlawyer-shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.northernlawyer-shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.northernlawyer-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.northernlawyer-hero-content {
    max-width: 800px;
}

.northernlawyer-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    margin-bottom: var(--northernlawyer-spacing-xl);
    justify-content: center;
    font-size: 0.875rem;
}

.northernlawyer-breadcrumb-link {
    color: var(--northernlawyer-neutral-300);
    text-decoration: none;
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-breadcrumb-link:hover {
    color: var(--northernlawyer-primary-light);
}

.northernlawyer-breadcrumb-separator {
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-breadcrumb-current {
    color: var(--northernlawyer-primary-light);
    font-weight: 500;
}

.northernlawyer-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--northernlawyer-border-radius-2xl);
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    margin-bottom: var(--northernlawyer-spacing-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--northernlawyer-primary-light);
    backdrop-filter: blur(10px);
}

.northernlawyer-hero-badge-icon {
    color: var(--northernlawyer-primary-light);
    font-size: 1rem;
}

.northernlawyer-hero-badge-text {
    font-weight: 500;
    color: var(--northernlawyer-primary-light);
}

.northernlawyer-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--northernlawyer-spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--northernlawyer-spacing-md);
}

.northernlawyer-hero-title-line {
    position: relative;
    display: inline-block;
}

.northernlawyer-hero-title-text {
    position: relative;
    z-index: 2;
}

.northernlawyer-hero-title-accent {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.northernlawyer-hero-title-underline {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--northernlawyer-primary), var(--northernlawyer-secondary));
    border-radius: 2px;
    opacity: 0.3;
    animation: underlineExpand 2s ease-out;
}

.northernlawyer-hero-title-highlight {
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border-radius: var(--northernlawyer-border-radius-lg);
    z-index: 1;
    animation: highlightPulse 3s ease-in-out infinite;
}

.northernlawyer-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    color: var(--northernlawyer-neutral-300);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.northernlawyer-section-header {
    text-align: center;
    margin-bottom: var(--northernlawyer-spacing-4xl);
}

.northernlawyer-section-badge {
    display: inline-block;
    background: var(--northernlawyer-gradient-primary);
    color: white;
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    border-radius: var(--northernlawyer-border-radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--northernlawyer-spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.northernlawyer-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-lg);
    line-height: 1.2;
}

.northernlawyer-section-subtitle {
    font-size: 1.125rem;
    color: var(--northernlawyer-neutral-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.northernlawyer-portfolio-stats {
    padding: var(--northernlawyer-spacing-4xl) 0;
    background: var(--northernlawyer-neutral-0);
}

.northernlawyer-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--northernlawyer-spacing-xl);
}

.northernlawyer-stat-card {
    background: var(--northernlawyer-neutral-0);
    border: 1px solid var(--northernlawyer-neutral-200);
    border-radius: var(--northernlawyer-border-radius-xl);
    padding: var(--northernlawyer-spacing-2xl);
    text-align: center;
    transition: var(--northernlawyer-transition-normal);
    position: relative;
    overflow: hidden;
}

.northernlawyer-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--northernlawyer-gradient-primary);
    transform: scaleX(0);
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-stat-card:hover::before {
    transform: scaleX(1);
}

.northernlawyer-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--northernlawyer-shadow-xl);
    border-color: var(--northernlawyer-primary-light);
}

.northernlawyer-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--northernlawyer-gradient-primary);
    border-radius: var(--northernlawyer-border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--northernlawyer-spacing-lg);
    color: white;
    font-size: 1.5rem;
}

.northernlawyer-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--northernlawyer-primary);
    margin-bottom: var(--northernlawyer-spacing-sm);
    line-height: 1;
}

.northernlawyer-stat-label {
    color: var(--northernlawyer-neutral-600);
    font-weight: 500;
    font-size: 1rem;
}

.northernlawyer-portfolio-categories {
    padding: var(--northernlawyer-spacing-4xl) 0;
    background: var(--northernlawyer-neutral-50);
}

.northernlawyer-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--northernlawyer-spacing-xl);
}

.northernlawyer-category-card {
    background: var(--northernlawyer-neutral-0);
    border-radius: var(--northernlawyer-border-radius-xl);
    padding: var(--northernlawyer-spacing-2xl);
    text-align: center;
    transition: var(--northernlawyer-transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--northernlawyer-neutral-200);
}

.northernlawyer-category-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--northernlawyer-transition-slow);
}

.northernlawyer-category-card:hover::after {
    width: 300px;
    height: 300px;
}

.northernlawyer-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--northernlawyer-shadow-xl);
    border-color: var(--northernlawyer-primary-light);
}

.northernlawyer-category-icon {
    width: 80px;
    height: 80px;
    background: var(--northernlawyer-gradient-secondary);
    border-radius: var(--northernlawyer-border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--northernlawyer-spacing-lg);
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.northernlawyer-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-md);
    position: relative;
    z-index: 2;
}

.northernlawyer-category-description {
    color: var(--northernlawyer-neutral-600);
    margin-bottom: var(--northernlawyer-spacing-lg);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.northernlawyer-category-stats {
    display: flex;
    justify-content: space-between;
    gap: var(--northernlawyer-spacing-md);
    position: relative;
    z-index: 2;
}

.northernlawyer-category-stat {
    background: var(--northernlawyer-neutral-100);
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-md);
    border-radius: var(--northernlawyer-border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--northernlawyer-primary);
}

.northernlawyer-featured-investments {
    padding: var(--northernlawyer-spacing-4xl) 0;
    background: var(--northernlawyer-neutral-0);
}

.northernlawyer-investments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--northernlawyer-spacing-xl);
}

.northernlawyer-investment-card {
    background: var(--northernlawyer-neutral-0);
    border-radius: var(--northernlawyer-border-radius-xl);
    overflow: hidden;
    transition: var(--northernlawyer-transition-normal);
    border: 1px solid var(--northernlawyer-neutral-200);
    position: relative;
}

.northernlawyer-investment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--northernlawyer-shadow-xl);
    border-color: var(--northernlawyer-primary-light);
}

.northernlawyer-investment-featured {
    grid-column: span 2;
}

.northernlawyer-investment-image {
    height: 200px;
    background: var(--northernlawyer-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.northernlawyer-investment-placeholder {
    color: white;
    font-size: 3rem;
    opacity: 0.8;
}

.northernlawyer-investment-badge {
    position: absolute;
    top: var(--northernlawyer-spacing-md);
    right: var(--northernlawyer-spacing-md);
    background: var(--northernlawyer-gradient-accent);
    color: white;
    padding: var(--northernlawyer-spacing-xs) var(--northernlawyer-spacing-md);
    border-radius: var(--northernlawyer-border-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.northernlawyer-investment-content {
    padding: var(--northernlawyer-spacing-xl);
}

.northernlawyer-investment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--northernlawyer-spacing-md);
    font-size: 0.875rem;
}

.northernlawyer-investment-category {
    background: var(--northernlawyer-gradient-primary);
    color: white;
    padding: var(--northernlawyer-spacing-xs) var(--northernlawyer-spacing-sm);
    border-radius: var(--northernlawyer-border-radius-md);
    font-weight: 500;
}

.northernlawyer-investment-year {
    color: var(--northernlawyer-neutral-500);
    font-weight: 500;
}

.northernlawyer-investment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-md);
    line-height: 1.3;
}

.northernlawyer-investment-description {
    color: var(--northernlawyer-neutral-600);
    margin-bottom: var(--northernlawyer-spacing-lg);
    line-height: 1.6;
}

.northernlawyer-investment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--northernlawyer-spacing-md);
}

.northernlawyer-investment-detail {
    display: flex;
    flex-direction: column;
    gap: var(--northernlawyer-spacing-xs);
}

.northernlawyer-investment-detail-label {
    font-size: 0.875rem;
    color: var(--northernlawyer-neutral-500);
    font-weight: 500;
}

.northernlawyer-investment-detail-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--northernlawyer-primary);
}

.northernlawyer-investment-process {
    padding: var(--northernlawyer-spacing-4xl) 0;
    background: var(--northernlawyer-neutral-50);
}

.northernlawyer-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--northernlawyer-spacing-xl);
    flex-wrap: wrap;
}

.northernlawyer-process-step {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-lg);
    background: var(--northernlawyer-neutral-0);
    padding: var(--northernlawyer-spacing-xl);
    border-radius: var(--northernlawyer-border-radius-xl);
    border: 1px solid var(--northernlawyer-neutral-200);
    transition: var(--northernlawyer-transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.northernlawyer-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--northernlawyer-gradient-secondary);
    transform: scaleX(0);
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-process-step:hover::before {
    transform: scaleX(1);
}

.northernlawyer-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--northernlawyer-shadow-lg);
    border-color: var(--northernlawyer-secondary-light);
}

.northernlawyer-process-step-number {
    width: 50px;
    height: 50px;
    background: var(--northernlawyer-gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.northernlawyer-process-step-content {
    flex: 1;
}

.northernlawyer-process-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-xs);
    line-height: 1.3;
}

.northernlawyer-process-step-description {
    color: var(--northernlawyer-neutral-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

.northernlawyer-process-arrow {
    color: var(--northernlawyer-neutral-400);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.northernlawyer-portfolio-cta {
    padding: var(--northernlawyer-spacing-4xl) 0;
    background: var(--northernlawyer-gradient-hero);
    color: var(--northernlawyer-neutral-0);
    text-align: center;
}

.northernlawyer-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.northernlawyer-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--northernlawyer-spacing-lg);
    line-height: 1.2;
}

.northernlawyer-cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--northernlawyer-spacing-2xl);
    line-height: 1.6;
}

.northernlawyer-cta-buttons {
    display: flex;
    gap: var(--northernlawyer-spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.northernlawyer-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    padding: var(--northernlawyer-spacing-lg) var(--northernlawyer-spacing-2xl);
    border-radius: var(--northernlawyer-border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--northernlawyer-transition-normal);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.northernlawyer-btn-primary {
    background: var(--northernlawyer-gradient-primary);
    color: white;
    box-shadow: var(--northernlawyer-shadow-md);
}

.northernlawyer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--northernlawyer-shadow-lg);
}

.northernlawyer-btn-secondary {
    background: transparent;
    color: var(--northernlawyer-neutral-0);
    border: 2px solid var(--northernlawyer-neutral-300);
}

.northernlawyer-btn-secondary:hover {
    background: var(--northernlawyer-neutral-0);
    color: var(--northernlawyer-neutral-900);
    border-color: var(--northernlawyer-neutral-0);
}

.northernlawyer-btn-icon {
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-btn:hover .northernlawyer-btn-icon {
    transform: translateX(4px);
}

.northernlawyer-btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--northernlawyer-transition-slow);
}

.northernlawyer-btn:hover .northernlawyer-btn-ripple {
    width: 300px;
    height: 300px;
}

.northernlawyer-footer {
    background: var(--northernlawyer-neutral-900);
    color: var(--northernlawyer-neutral-300);
    padding: var(--northernlawyer-spacing-4xl) 0 var(--northernlawyer-spacing-xl);
}

.northernlawyer-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--northernlawyer-spacing-2xl);
    margin-bottom: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-footer-section h4 {
    color: var(--northernlawyer-neutral-0);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--northernlawyer-spacing-sm);
}

.northernlawyer-footer-links a {
    color: var(--northernlawyer-neutral-400);
    text-decoration: none;
    transition: var(--northernlawyer-transition-normal);
}

.northernlawyer-footer-links a:hover {
    color: var(--northernlawyer-primary-light);
}

.northernlawyer-footer-description {
    color: var(--northernlawyer-neutral-400);
    line-height: 1.6;
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-footer-contact p {
    margin-bottom: var(--northernlawyer-spacing-sm);
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-footer .northernlawyer-logo-icon {
    background: var(--northernlawyer-gradient-secondary);
}

.northernlawyer-footer .northernlawyer-logo-text {
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-footer .northernlawyer-logo-subtitle {
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-footer-bottom {
    border-top: 1px solid var(--northernlawyer-neutral-700);
    padding-top: var(--northernlawyer-spacing-xl);
    text-align: center;
    color: var(--northernlawyer-neutral-500);
}

@keyframes shine {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(180deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes highlightPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@media (max-width: 768px) {
    .northernlawyer-nav-menu {
        display: none;
    }
    
    .northernlawyer-nav-toggle {
        display: flex;
    }
    
    .northernlawyer-hero-title {
        font-size: 2.5rem;
    }
    
    .northernlawyer-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .northernlawyer-section-title {
        font-size: 2rem;
    }
    
    .northernlawyer-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--northernlawyer-spacing-lg);
    }
    
    .northernlawyer-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .northernlawyer-investments-grid {
        grid-template-columns: 1fr;
    }
    
    .northernlawyer-investment-featured {
        grid-column: span 1;
    }
    
    .northernlawyer-process-steps {
        flex-direction: column;
        gap: var(--northernlawyer-spacing-lg);
    }
    
    .northernlawyer-process-arrow {
        transform: rotate(90deg);
    }
    
    .northernlawyer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .northernlawyer-footer-content {
        grid-template-columns: 1fr;
        gap: var(--northernlawyer-spacing-xl);
    }
    
    .northernlawyer-container {
        padding: 0 var(--northernlawyer-spacing-lg);
    }
    
    .northernlawyer-hero {
        padding: 120px var(--northernlawyer-spacing-lg) 80px;
    }
    
    .northernlawyer-logo-text {
        font-size: 14px;
    }
    
    .northernlawyer-logo-subtitle {
        font-size: 14px;
    }
}
