/* ============================================
   WHEELEQUITY - DARK PREMIUM DESIGN SYSTEM
   ============================================ */

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

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1f1f1f;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #737373;
    
    /* Accent Colors */
    --accent-primary: #00d9ff;
    --accent-secondary: #00ff88;
    --accent-glow: rgba(0, 217, 255, 0.3);
    
    /* Borders */
    --border-color: #2a2a2a;
    --border-light: #3a3a3a;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(0, 217, 255, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.logo-image-wrapper {
    position: relative;
    height: 3.2rem;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image {
    height: 3.2rem;
    width: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #0066cc 0%, #0099ff 50%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.15;
}

.logo-byline {
    font-size: 0.65rem;
    color: rgba(115, 115, 115, 0.7);
    font-weight: 400;
    display: block;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* 10px gap between CTA buttons */
.nav-links li:has(.nav-cta.secondary) + li:has(.nav-cta.primary) {
    margin-left: calc(-2rem + 10px);
}

.nav-links a {
    color: rgba(184, 184, 184, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

/* Remove underline effect from nav-cta buttons */
.nav-links .nav-cta::after {
    display: none;
}

.nav-links a:hover {
    color: var(--text-secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

/* Shared base class for nav CTA buttons */
.nav-cta {
    height: 44px;
    padding: 0 22px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    line-height: 1;
}

.nav-cta.primary {
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 217, 255, 0.1);
}

.nav-cta.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-cta.primary:hover {
    background: var(--accent-secondary);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
}

.nav-cta.primary:hover::before {
    opacity: 1;
}

.nav-cta.secondary {
    background: transparent;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-cta.secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary) !important;
}

/* Legacy class support - map to new classes */
.btn-nav {
    height: 44px;
    padding: 0 22px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    line-height: 1;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-nav:hover {
    background: var(--accent-secondary);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
}

.btn-nav:hover::before {
    opacity: 1;
}

.btn-nav::after {
    display: none;
}

.btn-nav-secondary {
    height: 44px;
    padding: 0 22px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: transparent;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    line-height: 1;
}

.btn-nav-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav-mobile {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 80px;
}

.nav-mobile.is-open {
    display: flex;
}

.nav-mobile__panel {
    width: min(88vw, 360px);
    height: calc(100vh - 80px);
    padding: 2rem 1.5rem;
    background: var(--bg-primary);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.nav-mobile__link {
    font-size: 1.125rem;
    text-decoration: none;
    color: var(--text-secondary);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-mobile__link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-mobile__secondary {
    margin-top: 0.5rem;
    height: 44px;
    padding: 0 22px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary) !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-mobile__secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary) !important;
    background: transparent;
}

.nav-mobile__cta {
    margin-top: 0.5rem;
    height: 44px;
    padding: 0 22px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary) !important;
    background: var(--accent-primary);
    border: none;
    box-shadow: 0 1px 2px rgba(0, 217, 255, 0.1);
}

.nav-mobile__cta:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: var(--bg-primary) !important;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    margin-bottom: 1rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #0066cc 0%, #0099ff 50%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-byline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

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

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    background: var(--bg-primary);
}

.steps {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-partner-logo {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.partner-logo-small {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0.9);
}

.step-partner-logo:hover .partner-logo-small {
    opacity: 1;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PROOF SECTION
   ============================================ */
/* ============================================
   PARTNER SECTION
   ============================================ */
.partner-section {
    background: var(--bg-primary);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partner-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.partner-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.partner-logo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0.95);
}

.partner-logo-wrapper:hover .partner-logo {
    opacity: 1;
}

.partner-logo-wrapper a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.partner-logo-wrapper a:hover {
    transform: scale(1.02);
}

.partner-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   PROOF SECTION
   ============================================ */
.proof-section {
    background: var(--bg-secondary);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.proof-card:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.proof-metric {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.proof-details {
    margin-top: 1rem;
}

.proof-details p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.proof-details strong {
    color: var(--text-primary);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.inventory-cta-section {
    background: var(--bg-primary);
    padding-top: var(--spacing-xl);
    padding-bottom: 3.75rem;
}

.inventory-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.inventory-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.inventory-cta-button {
    margin-bottom: 2rem;
}

.inventory-cta-micro {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0.75rem;
}

.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.about-text {
    max-width: 700px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.luke-photo-placeholder {
    margin-bottom: 2.5rem;
}

.luke-photo {
    width: 230px;
    height: 360px;
    border-radius: 16px;
    object-fit: cover;
    object-position: 40% center;
    display: block;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 217, 255, 0.08);
}

.luke-identity {
    margin-bottom: 2rem;
}

.luke-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.luke-credentials {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-text-content {
    text-align: center;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

.trust-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-feature-card:hover {
    border-color: var(--border-light);
    background: rgba(31, 31, 31, 0.6);
}

.trust-icon {
    color: var(--accent-primary);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.trust-content {
    flex: 1;
}

.trust-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.trust-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.card-stat {
    text-align: center;
    padding: 1.25rem 0;
}

.card-stat:first-child {
    padding-top: 0;
}

.card-stat:last-child {
    padding-bottom: 0;
}

.card-stat-partner {
    padding-top: 1rem;
}

.card-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.25rem 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-number-partner {
    font-size: 1.75rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact-section {
    background: var(--bg-primary);
    padding-top: 3.75rem;
    padding-bottom: var(--spacing-xl);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lead-form,
.deal-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-header {
    margin-bottom: 1.5rem;
}

.form-section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-section-header .optional {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-helper {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: -0.75rem;
    margin-bottom: 0;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-group.vertical {
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.radio-label:hover {
    color: var(--text-primary);
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--accent-primary);
    width: 18px;
    height: 18px;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--text-primary);
}

.radio-label span {
    user-select: none;
}

/* Conditional Fields */
.conditional-field {
    animation: fadeIn 0.3s ease;
    margin-top: 1rem;
}

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

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    background: var(--accent-primary);
    transform: none;
    box-shadow: none;
}

/* Privacy Consent Checkbox */
.privacy-consent-group {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.privacy-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--accent-primary);
    flex-shrink: 0;
}

.privacy-checkbox:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.privacy-checkbox-text {
    flex: 1;
}

.privacy-checkbox-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-checkbox-text a:hover {
    color: var(--accent-secondary);
}

.privacy-error {
    display: block;
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.privacy-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-style: italic;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    background: var(--bg-secondary);
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.social-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-link {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo-name {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-partner-logo {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.partner-logo-footer {
    max-width: 140px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0.9);
}

.footer-partner-logo:hover .partner-logo-footer {
    opacity: 1;
}

.footer-partner-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-partner-logo a:hover {
    transform: scale(1.02);
}

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

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    text-align: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: var(--spacing-md) 0;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ============================================
   BLOG / INSIGHTS
   ============================================ */
.blog-hero {
    background: var(--bg-secondary);
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.blog-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.blog-cta-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.blog-cta-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.blog-posts-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.category-market {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.category-deals {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-secondary);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.category-strategy {
    background: rgba(255, 217, 0, 0.1);
    color: #ffd900;
    border: 1px solid rgba(255, 217, 0, 0.2);
}

.category-opinion {
    background: rgba(255, 136, 0, 0.1);
    color: #ff8800;
    border: 1px solid rgba(255, 136, 0, 0.2);
}

.category-rates {
    background: rgba(217, 0, 255, 0.1);
    color: #d900ff;
    border: 1px solid rgba(217, 0, 255, 0.2);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-primary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-card-author {
    color: var(--text-secondary);
}

.blog-card-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    transform: translateX(4px);
}

.blog-cta-section {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
}

.blog-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Individual Post Styling */
.post-article {
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-xl);
    background: var(--bg-primary);
}

.post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-category {
    margin-bottom: 1rem;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.post-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.post-author {
    color: var(--text-secondary);
    font-weight: 600;
}

.post-tag {
    color: var(--accent-primary);
    font-weight: 600;
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.post-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.post-callout {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-primary);
    border-radius: 8px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.post-callout h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-callout p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.post-sharing {
    max-width: 700px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 600;
}

.share-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.post-cta {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
}

.post-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.post-back {
    max-width: 700px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.back-link:hover {
    color: var(--accent-primary);
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.privacy-section {
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-xl);
    background: var(--bg-primary);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.privacy-effective {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.privacy-intro {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-primary);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.privacy-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.privacy-section-content {
    margin-bottom: 3rem;
}

.privacy-section-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.privacy-section-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.privacy-section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.privacy-section-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-section-content a {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-section-content a:hover {
    color: var(--accent-secondary);
}

.privacy-back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .luke-photo {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 230 / 360;
        margin: 0 auto;
    }
    
    .luke-identity {
        text-align: center;
    }
    
    .trust-features {
        margin: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps {
        gap: 2rem;
    }
    
    .step {
        grid-template-columns: 60px 1fr;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .logo-image-wrapper {
        height: 2.5rem;
    }
    
    .logo-image {
        height: 2.5rem;
    }
    
    .logo-name {
        font-size: 1.5rem;
    }
    
    .logo-byline {
        font-size: 0.6rem;
    }
    
    .lead-form,
    .deal-form {
        padding: 2rem 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .why-grid,
    .proof-grid,
    .testimonials,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        max-width: 160px;
    }
    
    .partner-logo-footer {
        max-width: 120px;
    }
    
    .partner-logo-small {
        max-width: 100px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.25rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-subtitle {
        font-size: 1.25rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.75rem;
    }
    
    .post-cta {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
