:root {
    --northernlawyer-primary: #0066ff;
    --northernlawyer-primary-dark: #0052cc;
    --northernlawyer-primary-light: #3385ff;
    --northernlawyer-secondary: #00d4aa;
    --northernlawyer-accent: #ff6b35;
    --northernlawyer-success: #00c851;
    --northernlawyer-warning: #ffbb33;
    --northernlawyer-error: #ff4444;
    
    --northernlawyer-neutral-0: #ffffff;
    --northernlawyer-neutral-50: #fafbfc;
    --northernlawyer-neutral-100: #f4f6f8;
    --northernlawyer-neutral-200: #e8ecf0;
    --northernlawyer-neutral-300: #d1d9e0;
    --northernlawyer-neutral-400: #8a9ba8;
    --northernlawyer-neutral-500: #5c6b73;
    --northernlawyer-neutral-600: #3d4852;
    --northernlawyer-neutral-700: #2c3e50;
    --northernlawyer-neutral-800: #1a252f;
    --northernlawyer-neutral-900: #0d1117;
    
    --northernlawyer-gradient-primary: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --northernlawyer-gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    --northernlawyer-gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    --northernlawyer-gradient-hero: linear-gradient(135deg, #0d1117 0%, #1a252f 50%, #2c3e50 100%);
    --northernlawyer-gradient-card: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    
    --northernlawyer-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --northernlawyer-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --northernlawyer-radius-sm: 6px;
    --northernlawyer-radius-md: 8px;
    --northernlawyer-radius-lg: 12px;
    --northernlawyer-radius-xl: 16px;
    --northernlawyer-radius-2xl: 24px;
    
    --northernlawyer-spacing-xs: 0.25rem;
    --northernlawyer-spacing-sm: 0.5rem;
    --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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--northernlawyer-neutral-700);
    background-color: var(--northernlawyer-neutral-0);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.northernlawyer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--northernlawyer-spacing-xl);
}

.northernlawyer-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--northernlawyer-neutral-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.northernlawyer-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--northernlawyer-spacing-lg) var(--northernlawyer-spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.northernlawyer-logo {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-lg);
}

.northernlawyer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--northernlawyer-gradient-primary);
    border-radius: var(--northernlawyer-radius-lg);
    color: white;
    flex-shrink: 0;
    box-shadow: var(--northernlawyer-shadow-md);
    position: relative;
    overflow: hidden;
}

.northernlawyer-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: iconShine 3s infinite;
}

.northernlawyer-logo-icon svg {
    position: relative;
    z-index: 1;
}

.northernlawyer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.northernlawyer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--northernlawyer-primary);
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.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: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: var(--northernlawyer-spacing-sm) 0;
}

.northernlawyer-nav-link:hover,
.northernlawyer-nav-link.active {
    color: var(--northernlawyer-primary);
}

.northernlawyer-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--northernlawyer-gradient-primary);
    border-radius: 1px;
}


.northernlawyer-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--northernlawyer-spacing-sm);
}

.northernlawyer-nav-bar {
    width: 24px;
    height: 2px;
    background: var(--northernlawyer-neutral-600);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.northernlawyer-hero {
    background: var(--northernlawyer-gradient-hero);
    color: var(--northernlawyer-neutral-0);
    padding: 140px var(--northernlawyer-spacing-xl) 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.northernlawyer-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.northernlawyer-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.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.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
}

.northernlawyer-hero-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.northernlawyer-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
    animation: float 6s ease-in-out infinite;
}

.northernlawyer-shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.northernlawyer-shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.northernlawyer-shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.northernlawyer-shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.northernlawyer-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--northernlawyer-spacing-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
    padding: var(--northernlawyer-spacing-2xl) 0;
    max-width: 1200px;
    margin: 0 auto;
}

.northernlawyer-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--northernlawyer-radius-2xl);
    margin-bottom: var(--northernlawyer-spacing-xl);
    position: relative;
    overflow: hidden;
}

.northernlawyer-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.northernlawyer-hero-badge-icon {
    color: var(--northernlawyer-primary-light);
    animation: pulse 2s infinite;
}

.northernlawyer-hero-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--northernlawyer-primary-light);
    letter-spacing: 0.5px;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.northernlawyer-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--northernlawyer-spacing-xl);
    letter-spacing: -0.02em;
}

.northernlawyer-hero-title-line {
    display: block;
    position: relative;
}

.northernlawyer-hero-title-text {
    position: relative;
    z-index: 2;
}

.northernlawyer-hero-title-underline {
    position: absolute;
    bottom: 0;
    left: 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-accent {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.northernlawyer-hero-title-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border-radius: 8px;
    z-index: -1;
    animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes highlightPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.northernlawyer-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--northernlawyer-spacing-2xl);
    opacity: 0.9;
    color: var(--northernlawyer-neutral-300);
    max-width: 500px;
}

.northernlawyer-hero-buttons {
    display: flex;
    gap: var(--northernlawyer-spacing-lg);
    margin-bottom: var(--northernlawyer-spacing-3xl);
    flex-wrap: wrap;
}

.northernlawyer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--northernlawyer-spacing-sm);
    padding: var(--northernlawyer-spacing-lg) var(--northernlawyer-spacing-2xl);
    border-radius: var(--northernlawyer-radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.northernlawyer-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;
}

.northernlawyer-btn:hover::before {
    left: 100%;
}

.northernlawyer-btn-icon {
    transition: transform 0.3s ease;
}

.northernlawyer-btn:hover .northernlawyer-btn-icon {
    transform: translateX(4px);
}

.northernlawyer-btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.northernlawyer-btn:active .northernlawyer-btn-ripple {
    width: 300px;
    height: 300px;
}

.northernlawyer-btn-primary {
    background: var(--northernlawyer-gradient-primary);
    color: var(--northernlawyer-neutral-0);
    box-shadow: var(--northernlawyer-shadow-lg);
}

.northernlawyer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--northernlawyer-shadow-xl);
}

.northernlawyer-btn-secondary {
    background: transparent;
    color: var(--northernlawyer-neutral-0);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.northernlawyer-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.northernlawyer-hero-stats {
    display: flex;
    gap: var(--northernlawyer-spacing-2xl);
    flex-wrap: wrap;
}

.northernlawyer-hero-stat {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-lg);
    padding: var(--northernlawyer-spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--northernlawyer-radius-xl);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.northernlawyer-hero-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.northernlawyer-hero-stat-icon {
    color: var(--northernlawyer-secondary);
    animation: pulse 2s infinite;
}

.northernlawyer-hero-stat-icon i {
    font-size: 18px;
}

.northernlawyer-hero-stat-content {
    text-align: left;
}

.northernlawyer-hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--northernlawyer-neutral-0);
    margin-bottom: var(--northernlawyer-spacing-xs);
    font-family: 'JetBrains Mono', monospace;
}

.northernlawyer-hero-stat-label {
    font-size: 12px;
    color: var(--northernlawyer-neutral-300);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.northernlawyer-hero-visual {
    position: relative;
}

.northernlawyer-hero-visual-container {
    position: relative;
    border-radius: var(--northernlawyer-radius-2xl);
    overflow: hidden;
    box-shadow: var(--northernlawyer-shadow-2xl);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
}

.northernlawyer-hero-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.northernlawyer-hero-visual-bg-circle {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.northernlawyer-hero-visual-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 170, 0.05));
}

.northernlawyer-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.northernlawyer-hero-visual-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.northernlawyer-floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 170, 0.3));
    animation: float 8s ease-in-out infinite;
}

.northernlawyer-floating-element-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.northernlawyer-floating-element-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.northernlawyer-floating-element-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.northernlawyer-hero-visual-overlay {
    position: absolute;
    top: var(--northernlawyer-spacing-2xl);
    right: var(--northernlawyer-spacing-2xl);
    z-index: 2;
}

.northernlawyer-hero-visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--northernlawyer-spacing-xl);
    border-radius: var(--northernlawyer-radius-xl);
    box-shadow: var(--northernlawyer-shadow-xl);
    min-width: 200px;
}

.northernlawyer-hero-visual-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-hero-visual-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--northernlawyer-neutral-700);
}

.northernlawyer-hero-visual-card-badge {
    background: var(--northernlawyer-gradient-secondary);
    color: var(--northernlawyer-neutral-0);
    padding: var(--northernlawyer-spacing-xs) var(--northernlawyer-spacing-sm);
    border-radius: var(--northernlawyer-radius-sm);
    font-size: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.northernlawyer-hero-visual-card-badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--northernlawyer-radius-sm);
    animation: pulse 2s infinite;
}

.northernlawyer-hero-visual-card-chart {
    display: flex;
    align-items: end;
    gap: var(--northernlawyer-spacing-sm);
    height: 60px;
}

.northernlawyer-hero-visual-card-bar {
    width: 8px;
    background: var(--northernlawyer-gradient-primary);
    border-radius: var(--northernlawyer-radius-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.northernlawyer-hero-visual-card-bar-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: var(--northernlawyer-radius-sm);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.northernlawyer-features {
    background: var(--northernlawyer-neutral-50);
    padding: var(--northernlawyer-spacing-4xl) 0;
}

.northernlawyer-features-header {
    text-align: center;
    margin-bottom: var(--northernlawyer-spacing-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.northernlawyer-features-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--northernlawyer-radius-2xl);
    margin-bottom: var(--northernlawyer-spacing-xl);
}

.northernlawyer-features-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--northernlawyer-primary);
    letter-spacing: 0.5px;
}

.northernlawyer-features-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-lg);
    letter-spacing: -0.02em;
}

.northernlawyer-features-subtitle {
    font-size: 1.25rem;
    color: var(--northernlawyer-neutral-600);
    line-height: 1.7;
}

.northernlawyer-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-feature-card {
    background: var(--northernlawyer-gradient-card);
    padding: var(--northernlawyer-spacing-3xl);
    border-radius: var(--northernlawyer-radius-2xl);
    box-shadow: var(--northernlawyer-shadow-sm);
    border: 1px solid var(--northernlawyer-neutral-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.northernlawyer-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--northernlawyer-gradient-primary);
}

.northernlawyer-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.northernlawyer-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--northernlawyer-shadow-xl);
    border-color: var(--northernlawyer-primary-light);
}

.northernlawyer-feature-card:hover::after {
    opacity: 1;
}

.northernlawyer-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--northernlawyer-spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--northernlawyer-gradient-primary);
    border-radius: var(--northernlawyer-radius-xl);
    box-shadow: var(--northernlawyer-shadow-md);
    position: relative;
    overflow: hidden;
}

.northernlawyer-feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: iconShine 3s infinite;
}

.northernlawyer-feature-icon i {
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 1;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.northernlawyer-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-feature-description {
    color: var(--northernlawyer-neutral-600);
    line-height: 1.7;
    font-size: 16px;
}

.northernlawyer-services {
    background: var(--northernlawyer-neutral-0);
    padding: var(--northernlawyer-spacing-4xl) 0;
}

.northernlawyer-section-header {
    text-align: center;
    margin-bottom: var(--northernlawyer-spacing-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.northernlawyer-section-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--northernlawyer-radius-2xl);
    margin-bottom: var(--northernlawyer-spacing-xl);
}

.northernlawyer-section-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--northernlawyer-secondary);
    letter-spacing: 0.5px;
}

.northernlawyer-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-lg);
    letter-spacing: -0.02em;
}

.northernlawyer-section-subtitle {
    font-size: 1.25rem;
    color: var(--northernlawyer-neutral-600);
    line-height: 1.7;
}

.northernlawyer-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-service-card {
    background: var(--northernlawyer-gradient-card);
    padding: var(--northernlawyer-spacing-3xl);
    border-radius: var(--northernlawyer-radius-2xl);
    box-shadow: var(--northernlawyer-shadow-sm);
    border: 1px solid var(--northernlawyer-neutral-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.northernlawyer-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--northernlawyer-shadow-xl);
    border-color: var(--northernlawyer-secondary);
}

.northernlawyer-service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--northernlawyer-spacing-xl);
}

.northernlawyer-service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--northernlawyer-gradient-secondary);
    border-radius: var(--northernlawyer-radius-xl);
    box-shadow: var(--northernlawyer-shadow-md);
}

.northernlawyer-service-icon i {
    font-size: 20px;
    color: white;
}

.northernlawyer-service-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--northernlawyer-neutral-200);
    font-family: 'JetBrains Mono', monospace;
}

.northernlawyer-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-service-description {
    color: var(--northernlawyer-neutral-600);
    line-height: 1.7;
    margin-bottom: var(--northernlawyer-spacing-xl);
    font-size: 16px;
}

.northernlawyer-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--northernlawyer-spacing-sm);
}

.northernlawyer-service-feature {
    background: var(--northernlawyer-neutral-100);
    color: var(--northernlawyer-neutral-700);
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    border-radius: var(--northernlawyer-radius-2xl);
    font-size: 14px;
    font-weight: 500;
}

.northernlawyer-about-preview {
    background: var(--northernlawyer-neutral-50);
    padding: var(--northernlawyer-spacing-4xl) 0;
}

.northernlawyer-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--northernlawyer-spacing-4xl);
    align-items: center;
}

.northernlawyer-about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-xl);
    letter-spacing: -0.02em;
}

.northernlawyer-about-description {
    font-size: 1.125rem;
    color: var(--northernlawyer-neutral-600);
    line-height: 1.7;
    margin-bottom: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-about-features {
    margin-bottom: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-feature {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-lg);
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--northernlawyer-gradient-secondary);
    color: var(--northernlawyer-neutral-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.northernlawyer-about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--northernlawyer-radius-2xl);
    box-shadow: var(--northernlawyer-shadow-xl);
}

.northernlawyer-cta {
    background: var(--northernlawyer-gradient-primary);
    color: var(--northernlawyer-neutral-0);
    padding: var(--northernlawyer-spacing-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.northernlawyer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.northernlawyer-cta-content {
    position: relative;
    z-index: 1;
}

.northernlawyer-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--northernlawyer-spacing-lg);
    letter-spacing: -0.02em;
}

.northernlawyer-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--northernlawyer-spacing-2xl);
    color: var(--northernlawyer-neutral-200);
}

.northernlawyer-cta-buttons {
    display: flex;
    gap: var(--northernlawyer-spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.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-3xl);
    margin-bottom: var(--northernlawyer-spacing-2xl);
}

.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-description {
    margin-top: var(--northernlawyer-spacing-lg);
    line-height: 1.7;
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-footer-title {
    color: var(--northernlawyer-neutral-0);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-footer-links {
    list-style: none;
}

.northernlawyer-footer-links li {
    margin-bottom: var(--northernlawyer-spacing-sm);
}

.northernlawyer-footer-links a {
    color: var(--northernlawyer-neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.northernlawyer-footer-links a:hover {
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-footer-contact p {
    margin-bottom: var(--northernlawyer-spacing-sm);
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-footer-bottom {
    border-top: 1px solid var(--northernlawyer-neutral-800);
    padding-top: var(--northernlawyer-spacing-xl);
    text-align: center;
    color: var(--northernlawyer-neutral-500);
}

@media (max-width: 1024px) {
    .northernlawyer-hero-container {
        grid-template-columns: 1fr;
        gap: var(--northernlawyer-spacing-3xl);
        text-align: center;
        padding: var(--northernlawyer-spacing-xl) 0;
    }
    
    .northernlawyer-hero-title {
        font-size: 3rem;
    }
    
    .northernlawyer-about-content {
        grid-template-columns: 1fr;
        gap: var(--northernlawyer-spacing-3xl);
    }
}

@media (max-width: 768px) {
    .northernlawyer-nav-menu {
        display: none;
    }
    
    .northernlawyer-nav-toggle {
        display: flex;
    }
    
    .northernlawyer-logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .northernlawyer-logo-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .northernlawyer-logo-text {
        font-size: 14px;
    }
    
    .northernlawyer-logo-subtitle {
        font-size: 14px;
    }
    
    .northernlawyer-hero {
        padding: 120px var(--northernlawyer-spacing-lg) 80px;
    }
    
    .northernlawyer-hero-container {
        padding: var(--northernlawyer-spacing-lg) 0;
    }
    
    .northernlawyer-hero-title {
        font-size: 2.5rem;
    }
    
    .northernlawyer-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .northernlawyer-hero-stats {
        justify-content: center;
    }
    
    .northernlawyer-features-title,
    .northernlawyer-section-title,
    .northernlawyer-cta-title {
        font-size: 2rem;
    }
    
    .northernlawyer-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--northernlawyer-spacing-2xl);
    }
    
    .northernlawyer-features-grid,
    .northernlawyer-services-grid {
        grid-template-columns: 1fr;
    }
    
    .northernlawyer-container {
        padding: 0 var(--northernlawyer-spacing-lg);
    }
}